这不适用于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>
答案 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>