CSS Comment Example

Comments in CSS are written using slash and star and are ignored by the browser.

Preview

Code

<style>
/* This is a CSS comment */
p{
color:#16a34a;
}
</style>

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

More CSS Syntax Examples (5)