Are there multi-line comments in CSS?

Are there multi-line comments in CSS?

I used the comments /* and */ in NetBeans, but when I applied them to my CSS code, the web page does not work with these CSS properties.

+8
css
source share
2 answers

CSS comments are multi-line:

 /* this is a comment */ 

multi-line:

 /* this is a comment and it is awesome because it is multiline! */ 
+29
source share

This is my first search result for multi-line comments in css :

CSS comments

 /* Comment here */ p { margin: 1em; /* Comment here */ padding: 2em; /* color: white; */ background-color: blue; } /* multi-line comment here */ 
+5
source share

All Articles