[转]IE和Firefox的一些CSS实现的区别。
1. !important
#a{
width: 200px !important;
width: 20px;
}
IE下宽度为20px;FF下宽度为200px。
2. _
#a{
width:200px;
_width: 20px;
}
IE下宽度为20px;FF下宽度为200px。
3. *
#a{
width:200px;
*width: 20px;
}
IE下宽度为20px;FF下宽度为200px。
#a{
width: 200px !important;
width: 20px;
}
IE下宽度为20px;FF下宽度为200px。
2. _
#a{
width:200px;
_width: 20px;
}
IE下宽度为20px;FF下宽度为200px。
3. *
#a{
width:200px;
*width: 20px;
}
IE下宽度为20px;FF下宽度为200px。