* zoom:1在bootstrap中做什么?

时间:2013-02-18 00:06:51

标签: css css3 twitter-bootstrap responsive-design

我注意到在bootstrap响应式CSS中,有这个类:

.row{margin-left:-30px;*zoom:1}

我从未在css属性中遇到内联*。任何人都可以澄清这是做什么的吗?

2 个答案:

答案 0 :(得分:15)

这就像IE5.5的内联条件语句 - IE7。由于内联zoom: 1(称为“星级属性黑客”),只有IE 5.5,IE6和IE7会显示*。类似于使用下划线_的IE6 hack。

请参阅:http://snook.ca/archives/html_and_css/targetting_ie7

答案 1 :(得分:3)

它被称为 star property hack (又名Holly Hack),类似于underscore hack

它仅用于为IE(v5-v7)系列设置属性。