Multiple choice technology web technology

How do you insert a comment in a CSS file?

  1. // this is a comment

  2. /* this is a comment */

  3. // this is a comment //

  4. ' this is a comment

Reveal answer Fill a bubble to check yourself
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.