Tell us what’s happening:
Describe your issue in detail here.
I have a: color: #000
a: hover{
color: blue;
}
It is not going through, it is saying the color should be black. What am I doing wrong?
When you style html tags in css without any effects you only use the name of the tag. In this case just an a{color:#000;} is only needed.
Things like : or :: are used only for special cases like hover or focus and the like .