今天為大家講解DIV+CSS中if條件hack知識與教程實例,各位朋友可以藉鏡一下我們的這個例子。希望下面的案例對你有幫助。
IE的CSS if條件Hack- css hack
為大家講解DIV+CSS中if條件hack知識與教程實例
目錄
#Css if hack條件語法
DIV+CSS if實例
if條件hack總結
Css if hack條件語法
#僅所有的WIN系統自帶IE可識別
只有IE5.0可以辨識
IE5.0包換IE5.5都可以辨識
僅IE6可辨識
IE6以及IE6以下的IE5.x都可辨識
僅IE7可辨識
僅IE8可辨識
2、DIV+CSS實例教學
CSS實例一:
讓IE6-IE8顯示不同的內容,DIV CSS程式碼如下:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>DIV IF条件实例</title> </head> <body> 你正在使用: <!--[if IE 7]> <h2>IE7</h2> <![endif]--> <!--[if IE 6]> <h2>IE6</h2> <![endif]--> <!--[if IE 8]> <h2>IE8</h2> <![endif]--> <br><br> <strong>说明</strong>:如果你的浏览器版本为多少即会显示IE多少,针对IE6-IE8实验CSS教程 </body> </html> 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实例 </title> <!--[if IE 6]> <style type="text/css"> .div{ color:#F00;} </style> <![endif]--> <!--[if IE 7]> <style type="text/css"> .div{ color:#FF0;} </style> <![endif]--> <!--[if IE 8]> <style type="text/css"> .div{ color:#00F;} </style> <![endif]--> </head> <body> <div class="div"> DIV CSS实验提示:<br> 我在IE6下是红颜色,在IE7下是黄颜色,在IE8下是蓝颜色 </div> </body> </html>
說明:以上實驗僅實驗IE6-IE8下if HACK。更多精彩請關注php中文網其它相關文章!
相關閱讀:
以上是CSS裡的if條件hack怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!