Page 131 - CSS
P. 131
Chapter 15: Comments
Syntax
• /* Comment */
Remarks
• Comments in CSS always start with /* and end with */
• Comments cannot be nested
Examples
Single Line
/* This is a CSS comment */
div {
color: red; /* This is a CSS comment */
}
Multiple Line
/*
This
is
a
CSS
comment
*/
div {
color: red;
}
Read Comments online: https://riptutorial.com/css/topic/1625/comments
https://riptutorial.com/ 109

