CSS Comments

Adding Comments in CSS

Comments in CSS are written using /* comment text */.

Purpose of Comments

Comments help document your code, explain sections, and improve readability.

Examples

/* Main container styles */
.container {
  width: 100%;
  padding: 20px;
}

/* Highlighted text */
.highlight { color: yellow; }