Comments in css

Comments in css

Search for: Comments in css


<style>

/* css comments */

.someclass
{
 attribute1:value;
 a2:value;

/* More css comments */
 attribute1:value;
 a2:value;

}

/* More css comments */
</style>

<style>
<!-- 
*************************************************
* Meant for primary banner 
*************************************************
-->
...
...
...
</style>

<style>


/*
*************************************************
* Some explanation
*************************************************
*/



</style>