2008年5月27日星期二

CSS hack

#left { color:#000;} FF
*html #left {color:#333;} IE6
*+html #left {color:#ccc;} IE7


#main {
width:750px;
padding:0px !important!;
padding:5px;
}
!important 作用是提示指定样式规则的应用优先权,IE不支持的值。

.test {
color:#000; //FF
*color:#333; //IE系列
_color:#ccc; //IE6
}

没有评论:

发表评论