Menu
Fundamentals

CSS Comments

Understand how to add comments to your CSS code.

1Adding Comments

Comments are ignored by browsers and help explain your code.

Example Code
/* This is a single-line comment */
p {
  color: red; /* Inline comment */
}

/* Multi-line
   comment */

Finished reading?

Mark this topic as complete to track progress.