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;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…