Published
- 1 min read
css target except id
The solution for this is noted below
css target except id
Solution
/*Use the :not selector
Example:*/
div:not(#bar) {
color: red;
}
Try other methods by searching on the site. That is if this doesn’t work