CSS Comments

What are Comments?

CSS comments are used to explain code and are ignored by the browser.

Why use comments?

Comments help you and others understand the code easily.

They are not visible on the webpage.

Example

/* This is a CSS comment */
body {
    background-color: #f5f5f5; /* light background */
}

h1 {
    color: blue; /* heading color */
}

/* Paragraph styling */
p {
    font-size: 18px;
    color: #333;
}
Try it Yourself

Summary