Disable CSS Rule with Comment

Developers sometimes comment out CSS rules to disable them temporarily.

Preview

Code

<style>
/*
p{
color:red;
}
*/
p{
color:#2563eb;
}
</style>

<p>The red style is disabled using a comment.</p>

More CSS Comments Examples (5)