I would like to change the look of all anchor tags in the body except ones in the navbar
, I tried:
a:not(.navbar) a {
color: #333;
}
a:hover:not(.navbar): {
color: #999;
}
But it doesn't work, all tags became the same. Is this possible?
EDIT: I have some other attributes such as transitions as well, so I can't set the restore the values for the rest.