CSS Web Development How do you add comments in CSS? Vaibhav Kothia May 26, 2023 0 Comments Comments in CSS are added with the /* */ syntax. /* This is an example of a CSS comment */ body { background-color: #e6e6e6; }
How do you add comments in CSS?
Comments in CSS are added with the /* */ syntax.
/* This is an example of a CSS comment */
body {
background-color: #e6e6e6;
}