溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Css的if hack條件怎么用

發(fā)布時間:2022-03-02 15:59:00 來源:億速云 閱讀:122 作者:iii 欄目:web開發(fā)

這篇文章主要介紹“Css的if hack條件怎么用”,在日常操作中,相信很多人在Css的if hack條件怎么用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Css的if hack條件怎么用”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

1、Css if hack條件語法    

<!--[if IE]> Only IE <![endif]-->
僅所有的WIN系統(tǒng)自帶IE可識別
<!--[if IE 5.0]> Only IE 5.0 <![endif]-->
只有IE5.0可以識別
<!--[if gt IE 5.0]> Only IE 5.0+ <![endif]-->
IE5.0包換IE5.5都可以識別
<!--[if lt IE 6]> Only IE 6- <![endif]-->
僅IE6可識別
<!--[if gte IE 6]> Only IE 6/+ <![endif]-->
IE6以及IE6以下的IE5.x都可識別

<!--[if lte IE 7]> Only IE 7/- <![endif]-->
僅IE7可識別
<!--[if gte IE 7]> Only IE 7/+ <![endif]-->
IE7以及IE7以下的IE6、IE5.x都可識別

<!--[if IE 8]> Only IE 8/- <![endif]-->
僅IE8可識別

2、DIV+CSS實例教程    

CSS實例一:
讓IE6-IE8顯示不同的內(nèi)容,DIV CSS代碼如下:

 <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DIV IF條件實例WWW.DIVCSS5.COM實例</title>
</head>
<body>
你正在使用:
<!--[if IE 7]>
<h3>IE7</h3>
<![endif]-->
<!--[if IE 6]>
<h3>IE6</h3>
<![endif]-->
<!--[if IE 8]>
<h3>IE8</h3>
<![endif]-->
<br><br>
<strong>DIVCSS5說明</strong>:如果你的瀏覽器版本為多少即會顯示IE多少,針對IE6-IE8實驗CSS教程
</body>
</html>

 

說明:以上針對不同IE顯示不同網(wǎng)頁內(nèi)容DIV+CSS實例實驗。

DIV+CSS實例二:
讓IE6-IE8顯示不同CSS樣式效果,DIV CSS代碼如下:

 <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS IF條件hack實例 www.億速云.com</title>
<!--[if IE 6]>
<style type="text/css">
.億速云{ color:#F00;}
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css">
.億速云{ color:#FF0;}
</style>
<![endif]-->
<!--[if IE 8]>
<style type="text/css">
.億速云{ color:#00F;}
</style>
<![endif]-->
</head>
<body>
<div class="億速云">
DIV CSS實驗提示:<br>
我在IE6下是紅顏色,在IE7下是黃顏色,在IE8下是藍(lán)顏色
</div>
</body>
</html>

 

說明:以上實驗僅實驗IE6-IE8下if HACK。

到此,關(guān)于“Css的if hack條件怎么用”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI