IE低版本(6-9)CSS hack

IE系列浏览器的hack大略如下:
•_nowamagic:1px;-----------ie6
•*nowamagic:1px;-----------ie7
•nowamagic:1px\0;----------ie89
•nowamagic:1px\9\0;--------ie9
•:root nowamagic:1px; ----ie9(实际情况可能ie9还是有问题,再用这种方式)

CSS 实例
.color{
    background-color: #CC00FF;        /*所有浏览器都会显示为紫色*/
    background-color: #FF0000\9;    /*IE6、IE7、IE8会显示红色*/
    *background-color: #0066FF;        /*IE6、IE7会变为蓝色*/            
    _background-color: #009933;        /*IE6会变为绿色*/
}

IE8是可以和IE7兼容的,简单一行代码,让IE8自动调用IE7的渲染模式。只需要在页面中加入如下HTTP meta-tag:<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />,只要IE8读到这个标签,它就会自动启动IE7兼容模式,保证页面完整展示。

混合使用

:root .demo {  
	background:#963\9; /* 仅IE9适用 */  
}  
.demo {  
	width: 300px;  
	height: 200px;  
	background: #036; /* 所有浏览器都适用 */  
	background: #09F\9; /* IE6~IE9 */  
	background: #09F\0; /* IE8~IE9 */  
	background: #09F\0/; /* IE8 */  
	*background: #F60; /* IE6/IE7 */  
	+background: #F60; /* IE6/IE7 */  
	@background: #F60; /* IE6/IE7 */  
	>background: #F60; /* IE6/IE7 */  
	_background: #ccc; /* IE6 */  
}  <strong>
</strong>


IE7该删了

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值