CSS comments
Comments are declared within stylesheet definitions so that code would be easier to understand and navigate. Comments in CSS are ignored by web browsers.
Comments are declared with a beginning /* and an ending */. Everything between them will be a comment.
Example:
<style type="text/css">
/*
This code will be set text to be courier, 15pt in size, bold, and blue.
*/
#text {
font-family: courier;
font-size: 15pt;
font-weight: bold;
color: blue;
/*
Aren't comments great?
*/
</style>




