Reputation: 21
I made all my images move to the left a little bit whenever I hover over them. But I want to exclude the images that have certain ID or class set up by me. How do I do that?
My hover code:
a:hover
{
margin-left: 6px;
}
Upvotes: 2
Views: 162
Reputation: 2787
Check out the :not()
selector https://developer.mozilla.org/en/docs/CSS/:not
Upvotes: 1