0
你如何使用條件註釋目標有效條件註釋針對非IE瀏覽器和IE特定版本
Internet Explorer中僅
某些版本的IE
某些版本的IE和所有其他瀏覽器
沒有IE瀏覽器,只是其他瀏覽器
以某種方式驗證? (validator.w3.org/)
你如何使用條件註釋目標有效條件註釋針對非IE瀏覽器和IE特定版本
Internet Explorer中僅
某些版本的IE
某些版本的IE和所有其他瀏覽器
沒有IE瀏覽器,只是其他瀏覽器
以某種方式驗證? (validator.w3.org/)
我測試了這些,他們是有效的HTML。
重要:Only IE 5 through 9 support conditional comments.
<!-- 1. IE 5-9 only: -->
<!--<![if IE]>
<link rel="stylesheet" type="text/css" href="ie-5-through-9.css">
<![endif]>-->
<!-- 2. Some IE versions -->
<!--<![if gte IE 8]>
<link rel="stylesheet" type="text/css" href="ie-8-and-9.css">
<![endif]>-->
<!-- 3. Some IE versions, plus all non-IE browsers -->
<!--[if gte IE 8]>-->
<link rel="stylesheet" type="text/css" href="ie-gte8-and-non-ie.css">
<!--<![endif]-->
<!-- 4. All browsers except IE 5-9 -->
<!--[if !IE]>-->
<link rel="stylesheet" type="text/css" href="modern-ie-and-non-ie.css">
<!--<![endif]-->