phi*_*lle 4 css internet-explorer google-chrome css-selectors css3
任何人都知道:not()在IE和Chrome中使用CSS 选择器的任何技巧?
例如,这适用于Firefox: iframe:not(.anifrmclass){}
干杯!
特异性是你的朋友.将:not(.anifrmclass)样式应用于所有<iframe>s然后覆盖其他值<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;
}
| 归档时间: | 
 | 
| 查看次数: | 3688 次 | 
| 最近记录: |