How can I disable cascade option?

1.1k Views Asked by At

I have css option for all divs

div {
  background: blue;
}

How can I make div with id myDiv that will not inherit any css option except #myDiv.

1

There are 1 best solutions below

0
On

You cannot, that's why they are called Cascading Style Sheets.

The most common solution in such cases would be to override the background attribute on #myDiv with another rule.

In this specific case, you have the option of using the CSS3 :not pseudo-class as in div:not(#myDiv) { background: blue }, but then you have to account for browser compatibility (summary: works on everything except for IE < 9) so I don't think this is a practical option just yet.