简单的代码不适用于chrome

时间:2014-03-20 14:27:59

标签: html css google-chrome browser

这不适用于Google Chrome。知道为什么吗?

<html>
  <head>
    <style type="css/text">
      #wrapper{display:none}
    </style>
  </head>
  <body>
    <div id="wrapper" >
      This is a test this is a test
    </div>
  </body>
</html>

6 个答案:

答案 0 :(得分:4)

css/text应为text/css

<style type="text/css">

但是,在HTML5中,style元素type将默认为&#34; text / css&#34;如果没有指定,那么根据您支持的浏览器,您可以完全放弃它。

答案 1 :(得分:0)

样式标签应为:

<style type="text/css">

甚至更好,删除它!

<style>

答案 2 :(得分:0)

你应该改变

<style type="css/text"><style type="text/css">

答案 3 :(得分:0)

text/css而不是相反。 :P

答案 4 :(得分:0)

删除此属性:

type="css/text"

答案 5 :(得分:0)

以下代码可以使用。

    

    <style type="text/css">
        #wrapper{display:none}
        </style>

</head>
<body>
    <div id="wrapper" >
        This is a test this is a test
    </div>
</body>