Hack写法

文章来源:

http://www.w3cplus.com/css/create-css-browers-hacks

条件注释:http://www.w3cplus.com/create-an-ie-only-stylesheet

条件注释:

<!--[if lt IE8]>
<![endif]-->

lt低于,lte低于等于,gt高于,gte高于等于

常用Hack写法:

IE6: 

div {
  _width:100px;  
}

*html div {
   width:100px;
}

IE7:

div{
   +width:100px;
}
*+html div {
    width:100px;
}
*:first-child+html {
  width:100px;  
}

IE6和IE7:

div {
  *width:100px;
  +width:100px;  
}

IE6以外的浏览器:

html>body  div {}

IE浏览器:

div{  width:100px\9;}

IE>=8:

div{ width:100px\0;}

 

 

posted @ 2014-02-16 15:01  joya  阅读(551)  评论(0编辑  收藏  举报