user2312077
user2312077

Reputation: 21

CSS. How to exclude a tag from doing something?

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

Answers (2)

i_like_robots
i_like_robots

Reputation: 2787

Check out the :not() selector https://developer.mozilla.org/en/docs/CSS/:not

Upvotes: 1

khollenbeck
khollenbeck

Reputation: 16167

.myclass:hover {
    margin-left: 0px;
}

Upvotes: 2

Related Questions