Anyone know any tricks to use the CSS :not()
selector in IE and Chrome?
e.g. this works in Firefox: iframe:not(.anifrmclass){}
Cheers!
Anyone know any tricks to use the CSS :not()
selector in IE and Chrome?
e.g. this works in Firefox: iframe:not(.anifrmclass){}
Cheers!
Specificity is your friend. Apply your
:not(.anifrmclass)
styles to all<iframe>
s then override with other values for<iframe class="anifrmclass">
.