3. CSS Comments

Comments can be inserted into CSS and are ignored by browsers. A CSS comment starts with a "/*" and ends with "*/". Comments can span multiple lines.

Example 3.1 CSS Single Line Comment:
/* This is a comment. */
Selector {
    Property:Value;
}
    
Example 3.2 CSS Multi-Line Comment:
/* 
This is a 
multi-line comment. 
*/
Selector {
    Property:Value;
}