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.
/* and */
CSS comments are multi-line:
/* this is a comment */
multi-line:
/* this is a comment and it is awesome because it is multiline! */
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 */