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">
.
iframe {
/* Styles for all -other- iframes */
display: none;
}
iframe.anifrmclass {
/* Override for this class with values other than the above */
display: inline-block;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With