CSS hack——不同浏览器的CSS应对法

1、IE条件注释法:

  lte表示“小于等于”,“lt”表示“小于”,“gte”表示“大于等于”,“gt”表示“大于”,“!”表示“不等于”。

<!--[if IE 6]>
    <link type="text/CSS" href="ie6.css" rel="stylesheet" />
<![endif]-->
<!--[if gt IE 7]>
    <link type="text/CSS" href="ie7.css" rel="stylesheet" />
<![endif]-->

2、选择符前缀法:

<style type="text/CSS">
    .test{width:80px;}        /*IE 6,IE 7,IE 8*/
    *html .test{width:60px;}     /*only for IE 6*/
    *+html .test{width:70px;}      /*only for IE 7*/
</style>

3、样式属性前缀法:

“_”只在IE6下生效,“*”在IE6和IE7下生效

<style type="text/CSS">
    .test{width:80px;*width:70px;_width:60px;}
</style>

 

posted on   非零  阅读(204)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示