What is CSS Comments?

We can insert comments in our CSS much like we can with HTML code. And just as in HTML, the comment will be ignored by the web browser. A CSS comment begins with “/*”, and ends with “*/”, like the following example.

/* This is a CSS comment */
p
{
font-size: 120%;
/* This is another CSS comment */
color: black;
}

 

 

Scroll to Top