CSS Hack for ALL IE
/*目的:除了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
No Comments
No comments yet.
Comments RSS TrackBack Identifier URI
Leave a comment


