CSS中是否有任何多行注释?

Hea*_*man 13 css

CSS中是否有任何多行注释?

/* and */在NetBeans中使用了注释,但是当我将它们应用于我的CSS代码时,网页无法使用这些CSS属性.

mau*_*ris 34

CSS评论是多行的:

/* this is a comment */
Run Code Online (Sandbox Code Playgroud)

多:

/* 
  this is a comment
  and it is awesome because
  it is multiline!
*/
Run Code Online (Sandbox Code Playgroud)


Nav*_*eed 5

这是我在css中多行注释的第一个搜索结果:

CSS评论

/* Comment here */
p 
{
margin: 1em; /* Comment here */
padding: 2em; 
/* color: white; */
background-color: blue;
}

/*
multi-line
comment here
*/
Run Code Online (Sandbox Code Playgroud)