CSS Hacks – IE8, IE7, IE6 and Firefox

Option 1: IE8 and Firefox using the same style, IE6 and IE7 using another

#block {   margin-top: 5px; /* target only IE8 + Firefox browsers */    *margin-top: 10px; /* target only IE7 and older browsers */ } 

Option 2: IE8 and Firefox using the same style, IE6 and IE7 using their own styles different to IE8 and Firefox.

#block {   margin-top: 5px; /* target only IE8 + Firefox browsers */ }  * html #block { /* target IE6 only */   margin-top: 50px; }  *+html #block-block-10 { /* target IE7 only */   margin-top: 100px;}  

Option 3: Similar to above, but if you need to target IE8 and Firefox separately.

#block {   margin-top: 5px; /* target only IE8 + Firefox browsers */ }   #block-block-10, x:-moz-any-link { /* target only Firefox, overriding the style above */  margin-top: 20px; }   * html #block { /* target IE6 only */   margin-top: 50px; }   *+html #block-block-10 { /* target IE7 only */   margin-top: 100px; } 

Option 4: Similar to above, but if you need to target Firefox 3 and Firefox 2 separately.

#block {  margin-top: 5px; /* target only IE8 + Firefox browsers */ }   #block-block-10, x:-moz-any-link { /* target only Firefox, overriding the style above */   margin-top: 20px; }   #block-block-10, x:-moz-any-link, x:default { /* targets Firefox 3.0 and newer, overriding the style above */   margin-top: 30px; }   * html #block { /* target IE6 only */   margin-top: 50px; }   *+html #block-block-10 { /* target IE7 only */   margin-top: 100px; } 

Hopefully this makes sense, I have tested it so hopefully it works for you. Feel free to give feedback or other solutions you have come across.

转载于:https://www.cnblogs.com/zyip/archive/2011/02/08/1949932.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值