全國服務熱線:400-080-4418
css區(qū)分IE6 IE7 IE8 FF瀏覽器,CSS hack寫法,上海網(wǎng)站建設(shè)將自己知道的總結(jié)一下,盡量全面一點,以便對初學技術(shù)人員有所幫助。
注意下面介紹的這些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。
讓IE8執(zhí)行IE7效果:(上海做網(wǎng)站)
可以在頭部<head></head>之間加上
<meta http-equiv="X-UA-Compatible" content="IE=7" />
區(qū)別IE6、7與FF/IE8:
background:blue;*background:orange;
引用
顯示效果:
IE 6/7:orange
FF/IE8:blue
原理:FF/IE8不支持*開頭,而IE6/7都支持。
區(qū)別IE6與IE7/IE8/FF:(上海做網(wǎng)站)
background:green;_background:blue;
引用
顯示效果:
IE7/8/FF:green
IE6:blue
原理:IE6支持下劃線"_",IE7、8和firefox均不支持下劃線。
區(qū)別FF/IE8和IE6/7:(上海網(wǎng)站建設(shè))
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優(yōu)先識別!important,IE6不能識別!important。
關(guān)于IE8的hacks:
.test{
color:/*\**/#00f\9; /* IE8 only */
color:#00f\9; /* 適用于所有IE版本 */
}
可同時區(qū)分IE8、IE7、IE6、Firefox的CSS hacks:
.test{
color:#000; /* Firefox */
color:/*\**/#00f\9; /* IE8 */
*color:#f00; /* IE7 */
_color:#0f0; /* IE6 */
}
Copyright 2008 © 上海網(wǎng)至普信息科技有限公司 All rights reserved. 滬ICP備11006570號-13 滬公網(wǎng)安備 31011402007386號