溫馨提示×

溫馨提示×

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

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

DIV+CSS實(shí)例代碼分析

發(fā)布時(shí)間:2022-03-01 17:28:13 來源:億速云 閱讀:129 作者:iii 欄目:web開發(fā)

這篇文章主要介紹了DIV+CSS實(shí)例代碼分析的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇DIV+CSS實(shí)例代碼分析文章都會有所收獲,下面我們一起來看看吧。

CSS實(shí)例一:
讓IE6-IE8顯現(xiàn)一致的內(nèi)容,DIV CSS代碼下列:

 <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DIV IF前提實(shí)例WWW.CSS5.COM實(shí)例</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>CSS5說明</strong>:假如你的瀏覽器版本為多少即會透露表現(xiàn)IE若干,針對IE6-IE8試驗(yàn)CSS教程 
</body>
</html>
 

注明:以上針對差距IE表示差別網(wǎng)頁模式DIV+CSS實(shí)例試驗(yàn)。

DIV+CSS實(shí)例二:
讓IE6-IE8展現(xiàn)一致CSS花式成就,DIV CSS代碼以下:

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

 

關(guān)于“DIV+CSS實(shí)例代碼分析”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“DIV+CSS實(shí)例代碼分析”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

AI