Problem Statement
How do you add comments in CSS?
Explanation
CSS comments are written between /* and */. Comments are ignored by the browser and used to describe code sections — useful for teamwork and interviews about best practices.
Code Solution
SolutionRead Only
/* This is a CSS comment */
p { color: blue; }