How do you insert a comment in a CSS file?
-
// this is a comment
-
/* this is a comment */
-
// this is a comment //
-
' this is a comment
B
Correct answer
Explanation
CSS comments use /* comment */ syntax, similar to C-style comments in many programming languages. Double slashes (//) are not valid CSS comments - they're used in JavaScript and some other languages. Single quotes are not comment delimiters in any context.