IE特有条件注释

1 <p>这段文字会在所有浏览器显示</p>
2 <!--[if lte IE 6]>
3 <p>这段文字仅显示在 IE6及IE6以下版本。</p>
4 <p>This message will only appear in versions of Internet Explorer less than or equal to version 6.</p>
5 <![endif]-->
6
7 <!--[if gte IE 6]>
8 <p>这段文字仅显示在 IE6及IE6以上版本。</p>
9 <p>This message will only appear in versions of Internet Explorer greater than or equal to version 6.</p>
10 <![endif]-->
11
12 <!--[if gt IE 6]>
13 <p>这段文字仅显示在 IE6以上版本(不包含IE6)。</p>
14 <p>This message will only appear in versions of Internet Explorer greater than version 6.</p>
15 <![endif]-->
16
17 <!--[if IE 5.5]>
18 <p>这段文字仅显示在 IE5.5。</p>
19 <p>This message will only appear in Internet Explorer 5.5.</p>
20 <![endif]-->
21
22 <!--在 IE6及IE6以下版本中加载css-->
23 <!--[if lte IE 6]>
24 <link type="text/css" rel="stylesheet" href="css/ie6.css" />
25 <![endif]-->
26
27 <p>这段文字会在所有浏览器显示</p>
posted @ 2011-03-07 14:56  oneroundseven  阅读(257)  评论(0编辑  收藏  举报