CSSComments

Comments are notes you add to your CSS code to explain what it does. They are ignored by the browser and do not affect how the page looks. Comments are useful for organizing code, explaining complex styles, or leaving reminders for yourself and other developers. Adding clear comments makes your code easier to read and maintain, especially in larger projects.

/* This is a comment in CSS */
body { color: black; }