IE6 IE7 IE8 FF 兼容性的写法

selector{

property:value; /* 所有浏览器 */

property:value/9; /* 所有IE浏览器 */

+property:value; /* IE7 */

_property

 

 

根据CSS的优先性,上面的写法,分别针对Firefox、IE8、IE7和IE6显示值。

 

 

 

p.ie{

height:60px;text-align:center;line-height:60px;border:1px dashed #bbb;background:#f7f7f7;font:15;

color:blue; // 所有浏览器

color:brown/9; // 所有IE浏览器

+color:red; // IE7

_color:green; // IE6

}

HTML 代码:

<body style="width:500px;margin:0 auto;">

<p>

<span style="display:block;display:none/9;">嘿嘿,小子竟然也用Firefox,蓝色文字。</span>

<!--[if IE 8]>不错不错,挺先进的嘛,使用IE8呢!文字是褐色的。<![endif]-->

<!--[if IE 7]>你,IE7,红色文字!<![endif]-->

<!--[if IE 6]>孩子,虽然显示的是绿色文字,不过,IE6可不是好东西呢!<![endif]-->

</p>

</body>

注意下面介绍的这些hack写法仅适用于XHTML1.0。如果没有在HTML最前加上

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">

那么效果将不一样!此外,这里所说的IE8,不是指IE8的兼容模式,因为IE8的兼容模式其实就是IE7。

区别IE6、7与FF/IE8:

       background:blue;*background:orange;

引用

显示效果:

IE 6/7:orange

FF/IE8:blue

原理:FF/IE8不支持*开头,而IE6/7都支持。

区别IE6与IE7/IE8/FF:

       background:green;_background:blue;

引用

显示效果:

IE7/8/FF:green

IE6:blue

原理:IE6支持下划线"_",IE7、8和firefox均不支持下划线。

区别FF/IE8和IE6/7:

background:orange;+background:green;-background:blue;

或者

background:orange;*background:green!important;*background:blue;

 

引用

显示效果:

IE6:blue

IE7:green

FF/IE8:orange

原理:IE6能识别-,IE7能识别+,IE8和FF都不能识别+和-

IE8/FF都不识别*,IE7优先识别!important,IE6不能识别!important。

关于IE8的hacks:

.test{

     color:/*/**/#00f/9; /* IE8 only */

     color:#00f/9; /* 适用于所有IE版本 */

}

 

可同时区分IE8、IE7、IE6、Firefox的CSS hacks:

.test{

     color:#000; /* Firefox */

     color:/*/**/#00f/9; /* IE8 */

     *color:#f00; /* IE7 */

     _color:#0f0; /* IE6 */

}

 

添加相应的注释解决兼容性问题

注释相应的Css文件:

<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />

 

<!--[if IE 6]>

<link rel="stylesheet" type="text/css" href="css/IE6style.css" media="screen" />

<![endif]-->

 

<!--[if IE 7]>

<link rel="stylesheet" type="text/css" href="css/IE7style.css" media="screen" />

<![endif]-->

 

<!--[if gte IE 8]>

<link rel="stylesheet" type="text/css" href="css/IE8style.css" media="screen" />

<![endif]-->

注释相应的Css 内容:

<!--[if ie 6]>

<style>

<!--

#warp{ padding-bottom:11px;}

-->

</style>

<![endif]-->

<!--[if ie 7]>

<style>

<!--

#warp{ padding-bottom:11px;}

-->

</style>

<![endif]-->

<!--[if ie 8]>

<style>

<!--

#warp{ padding-bottom:11px;}

-->

</style>

<![endif]-->

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值