Disable CSS Rule with Comment
Preview
Code
<style>
/*
p{
color:red;
}
*/
p{
color:#2563eb;
}
</style>
<p>The red style is disabled using a comment.</p>
<style>
/*
p{
color:red;
}
*/
p{
color:#2563eb;
}
</style>
<p>The red style is disabled using a comment.</p>