What is the difference between a:hover { } and a :hover { } in CSS

Viewed 17

I just happened to insert a space between the a tag name and the colon in my CSS file and this changed the output.

What is the difference between the following two CSS selectors:

    a:hover {
        ...
    }

and

    a :hover {
        ...
    }
0 Answers
Related