Multiple choice technology web 2.0

How do you insert a comment in a CSS file?

  1. // comment here//

  2. ' comment here

  3. /* comment here */

  4. // comment here

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

CSS uses C-style comments with /* to open and */ to close. Single-line comments (//) and other syntaxes are not valid in CSS files.