您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關HTML條件注釋的用法案例的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
注釋內容以樣式為例,如下:
<!--[if IE]> <link rel="stylesheet" href="all-ie-only.css" type="text/css"/> <![endif]-->
<!--[if !IE]> <link rel="stylesheet" href="not-ie.css" type="text/css"/> <![endif]-->
上面是除了IE瀏覽器外所有瀏覽器都識別這個樣式,另外CSS-TRICKS的《How To Create an IE-Only Stylesheet》一文中提供了另一種寫法:
<!--[if !IE]><!--><link rel="stylesheet" type="text/css" href="not-ie.css" /><!--<![endif]-->
<!--[if IE 10]> <link rel="stylesheet" type="text/css" href="ie10.css"> <![endif]-->
這種方法是樣式表使用在低于IE10的瀏覽器,換句話說除了IE10以外的所有IE版本都將被支持。
<!--[if lt IE 10]> <link rel="stylesheet" type="text/css" href="ie9-and-down.css"> <![endif]-->
也可以寫成
<!--[if lte IE 9]> <link rel="stylesheet" type="text/css" href="ie9-and-down.css"> <![endif]-->
前面我們也說過了lt和lte的區別,lt表示小于版本號,不包括條件版本號本身;而lte是小于或等于版本號,包括了版本號自身
。
上面這幾種方法,使用的是低于(lt)和低于或等于(lte)的方法來判斷,我們也可以使用大于gt
和大于或等于gte
達到上面的效果:
<!--[if gt IE 9]> <link rel="stylesheet" type="text/css" href="ie10-and-up.css"> <![endif]-->
或
<!--[if gte IE 10]> <link rel="stylesheet" type="text/css" href="ie10-and-up.css"> <![endif]-->
<!--[if (IE 6)|(IE 7)|(IE 8)]> <link rel="stylesheet" type="text/css" href="ie6-7-8.css"> <![endif]-->
感謝各位的閱讀!關于HTML條件注釋的用法案例就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。