比较常用,简单的IE6.IE7.FF兼容hack方法
.test{
height:20px;
background-color:orange;
}
ff识别
-----------------------------------------------------------
*+html .test{/*IE7*/
height:20px;
background-color:blue;
}
IE7浏览器
------------------------------------------------------------
*html .test{/*IE6*/
height:20px;
background-color:black;
}
IE6浏览器
-----------------------------------------------------------------------
IE6加*html,而IE7加*+html,暗示加了一个版本。
height:20px;
background-color:orange;
}
ff识别
-----------------------------------------------------------
*+html .test{/*IE7*/
height:20px;
background-color:blue;
}
IE7浏览器
------------------------------------------------------------
*html .test{/*IE6*/
height:20px;
background-color:black;
}
IE6浏览器
-----------------------------------------------------------------------
IE6加*html,而IE7加*+html,暗示加了一个版本。















