时间:2013-08-09 03:33:06

标签: html internet-explorer

我为IE制作了这个,而不是IE制作了一个。不是IE的那个显示在IE中以及那些不是IE的。新IE是不支持这个还是我的IE搞砸了?我很确定我正确地写了这些,因为即使我正在阅读的书的资源也不起作用。或者是这本书的作者我遗漏了什么。

这是我的工作:

For IE: <!--[if IE]><div class="ieFlow"><h1>Your Board</h1></div><![endif]-->
For not IE <!--[if !IE]--><div class="Flow"><h1>Your Board</h1></div><!--[endif]-->

这是本书的作品:

<!--[if IE]>
  <h1>You're using IE</h1>
<![endif]-->

都没有工作。

2 个答案:

答案 0 :(得分:4)

答案 1 :(得分:0)

请点击以下链接阅读条件样式表

  1. CSS TRICK

  2. Conditional Stylesheet for IE

  3. OR

    你可以使用这个javascript文件,CSS浏览器选择器:http://rafael.adm.br/css_browser_selector/

    它允许您使用类名来定位特定的浏览器:

     .ie .example {
          background-color: yellow
        }
        .ie7 .example {
          background-color: orange
        }
        .gecko .example {
          background-color: gray
        }
        .win.gecko .example {
          background-color: red
        }
        .linux.gecko .example {
          background-color: pink
        }
        .opera .example {
          background-color: green
        }
        .konqueror .example {
          background-color: blue
        }
        .webkit .example {
          background-color: black
        }