2008年9月16日 星期二

[CSS] 創建IE各版本專屬CSS

出處: wowbox blog (網頁設計知識庫)

IE下專屬CSS:

程序代碼 程序代碼

<![if !IE]>

<link rel="stylesheet" type="text/css" href="NOT-IE.css" />

<![endif]>


IE 6 ONLY:

程序代碼 程序代碼

<!--[if IE 6]>

<link rel="stylesheet" type="text/css" href="IE-6-SPECIFIC.css" />

<![endif]-->


IE 5 ONLY:

程序代碼 程序代碼

<!--[if IE 5]>

<link rel="stylesheet" type="text/css" href="IE-5-SPECIFIC.css" />

<![endif]-->


IE 5.5 ONLY:

程序代碼 程序代碼

<!--[if IE 5.5000]>

<link rel="stylesheet" type="text/css" href="IE-55-SPECIFIC.css" />

<![endif]-->


IE6或更低:

程序代碼 程序代碼

<!--[if lte IE 6]>

<link rel="stylesheet" type="text/css" href="IE-6-OR-LOWER-SPECIFIC.css" />

<![endif]-->

IE7或更高:

程序代碼 程序代碼

<!--[if gte IE 7]>

<link rel="stylesheet" type="text/css" href="IE-7-OR-HIG-SPECIFIC.css" />

<![endif]-->

非IE:

程序代碼 程序代碼

<![if !IE]>

<link rel="stylesheet" type="text/css" href="REAL-STYLESHET.css" />

<![endif]>

補述:

lt:less than 當前指定版本以下,不包含當前版本
gt:greater than 當前指定版本以上,不包含當前版本
lte:less than or equal 當前指定版本以下,包含當前版本(等於)
gte:greater than or equal 當前指定版本以上,包含當前版本(等於)

http://msdn2.microsoft.com/en-us/library/ms537512.aspx
來自MSDN的參考。。。。


【下列文章您可能也有興趣】

沒有留言: