为什么 Dreamweaver 在注释中添加 CSS 代码?我们是否应该始终使用此注释来在中使用 CSS?
在注释中添加CSS代码有什么好处?
<STYLE type="text/css">
<!--
H1 { color: red }
P { color: blue}
-->
</STYLE>
我们应该一直使用它还是没有必要?它与 JavaScript 的 CDATA 相同吗?
What is the benefit to add CSS code in comments?
<STYLE type="text/css">
<!--
H1 { color: red }
P { color: blue}
-->
</STYLE>
Should we use this always or isn't there any need? Is it same like CDATA for JavaScript?
发布评论
评论(4)
它是 15 多年前就支持 HTML 2.0 浏览器的古老产物。这些浏览器不知道
和