CSS中是否有任何多行注释?
我在NetBeans中使用了/* and */
条评论,但是当我将它们应用于我的CSS代码时,网页无法使用这些CSS属性。
答案 0 :(得分:34)
CSS评论是多行的:
/* this is a comment */
多行:
/*
this is a comment
and it is awesome because
it is multiline!
*/
答案 1 :(得分:5)
这是我multiline comments in css的第一个搜索结果:
/* Comment here */
p
{
margin: 1em; /* Comment here */
padding: 2em;
/* color: white; */
background-color: blue;
}
/*
multi-line
comment here
*/