1 半透明
filter:alpha(opacity=60); -moz-opacity:0.6; opacity:0.6; filterI是IE的2 浏览器居中margin:0 auto; 所有浏览器居中3 下划线适用浏览器:IE6及其以下版本,其他浏览器会直接忽略它。浏览器的bug4 星号 (*)
- width: [W3C Model Width];
- _width: [BorderBox Model];
适用浏览器:IE7及其以下版本,其他浏览器会直接忽略它。
5 星号html(*html)
- width: [W3C Model Width];
- *width: [BorderBox Model];
适合浏览器:IE4-6,其他浏览器忽略
6星号+(*+)
- * html p {font-size: 5em; }
适合浏览器:IE7
或者
- *:first-child+html p { font-size: 5em; }
7 子选择器(>)
- *+html p { font-size: 5em; }
适用浏览器:IE6以上版本(不包括IE6)及非IE浏览器
8 子选择器加注释(>/**/)
- html > body p { color: blue; }
适用浏览器:IE7以上版本及非IE浏览器
- html >/**/ body p { color: blue; }