Comment Explaining a Rule

Comments are often used to explain what a CSS rule does.

Preview

Code

<style>
/* Style the heading */
h1{
color:#16a34a;
}
</style>

<h1>Styled Heading</h1>

More CSS Comments Examples (5)