1,盒解释器的不同解释.
#box{
width:600px; //for ie6.0-
width:500px; //for ff+ie6.0
}
#box{
width:600px!important //for ff
width:600px; //for ff+ie6.0
width :500px; //for ie6.0-
}
2,在ie中隐藏css,使用子选择器
htmlbody #box{ }
3,只有ie识别
*html #box{ }
4,在ie/win有效而ie/max隐藏,使用反斜杠
5,给ie单独定义样式
6,浮动ie产生的双倍距离
#box{
float:left;
width:100px;
margin:0 0 0 100px; //这种情况之下IE会产生200px的距离
display:inline; //使浮动忽略
}
这里细说一下block,inline两个元素,Block元素的特点是:总是在新行上开始,高度,宽度,行高,...[ 查看全文 ]