CSS中针对IE6、7和FF等浏览器的特殊样式写法


一、基本概念
 
*能被IE6、7识别
!important能被IE7、FF
_能被IE6识别

二、实例

复制代码
代码如下:

#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
#wrapper2
{
width: 100px;
_width: 80px; /* IE6 */
}

« 
» 
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3