Specificity is your friend. Apply your :not(.anifrmclass) styles to all s then override with other values for .
iframe {
/* Styles for all -other- iframes */
display: none;
}
iframe.anifrmclass {
/* Override for this class with values other than the above */
display: inline-block;
}