Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到在引导响应 CSS 中,有这个类:
.row{margin-left:-30px;*zoom:1}
我从来没有在*CSS 属性中遇到过内联。谁能澄清这是做什么的?
*
这就像 IE5.5 - IE7 的内联条件语句。只有 IE 5.5、IE6 和 IE7 会zoom: 1因为内联*(称为“星属性破解”)而显示。类似于带有下划线的 IE6 hack _。
zoom: 1
_
请参阅:http ://snook.ca/archives/html_and_css/targetting_ie7
它被称为星属性 hack (又名 Holly Hack),类似于下划线 hack。
它仅用于为 IE (v5-v7) 系列设置属性。