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

内容摘要
一、基本概念

*能被IE6、7识别
!important能被IE7、FF
_能被IE6识别

二、实例

复制代码代码如下:
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 8
文章正文
一、基本概念
 
*能被IE6、7识别
!important能被IE7、FF
_能被IE6识别

二、实例

复制代码
代码如下:

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

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!