Basic CSS Comment

This example shows a basic CSS comment that explains a style rule.

Preview

Code

<style>
/* This sets the text color */
p{
color:#2563eb;
}
</style>

<p>This paragraph uses CSS with a comment.</p>

More CSS Comments Examples (5)