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 */
}
*能被IE6、7识别
!important能被IE7、FF
_能被IE6识别
二、实例
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
#wrapper2
{
width: 100px;
_width: 80px; /* IE6 */
}