CSS: Comment Syntax

By Xah Lee. Date: . Last updated: .

Block Comment Syntax

CSS has block comment syntax.

comment start with

/*

and ends wiht

*/

Anything in between is ignored.

/* css comment */

/* comment is ignored */

/* can be
multiple lines
*/

Cannot be Nested

/* block comment cannot nest
/* this is error */
*/

No Line Comment Syntax

There is no line comment syntax.