Skip to main content
D
CSS
CSS Comments

CSS Comments

CSS comments leave helpful notes inside the code.

Read Time
5 min read
Difficulty
Beginner
Last Updated
Jun 15, 2026
Version
v1.0.0

Introduction

CSS comments explain styling choices to other developers. The browser completely ignores these comments when rendering the page. Developers use them to organize large files or temporarily disable code.

Syntax

Syntax
1/* css comment syntax */
2/* this is a comment */

Example

Example
1/* this shows a css comment */
2p {
3  color: red; /* makes text red */
4}

Up Next

Continue your journey with the next topic.

Go to CSS Colors