CSS Hack for ALL IE
Posted in CSS, 技术研究, 窄多废话 on September 30th, 2006 by Adam/*目的:除了IE(包括IE7)背景为红色,其他均为绿色*/
#item {
width: 200px;
height: 200px;
background: red;
}/*IE7不支持:lang,可以利用这个属性*/
*:lang(en) #item{
background:green !important;
}/*增加对Safari的支持*/
#item:empty { /*CSS3:emptypseudo-class => no children*/
background: green !important
}some text here


