CSS Comments part 1

Comments



Comments are used to explain your code, and may help you when you edit the source code later. Comments are ignored by browsers.

A CSS comment look like this:/* Comment goes here */
Example:
p {
color: green;
/* This is a comment */
font-size: 150%;
}
Try It Yourself

The comment does not appear in the browser:
Comments can also span multiple lines

Comments

Popular posts from this blog

font-family part 1