CSS comments are not displayed in the browser, but they can help document your source code.
Comments are used to explain the code, and may help when you edit the source code at a later date
Comments are ignored by browsers.
Comments can help you explain and organize your CSS, and control which parts of your stylesheet get applied on the front end.
CSS, comments are notes that explain CSS code without affecting the styling of a web page. How to use comments in CSS.
Comments are useful in adding explanatory notes of annotations within your stylesheet that are not interpreted as styling instructions by the web.
A comment is a piece of text within a style sheet that is not interpreted by the browser. It can be used to provide additional information.
A css comment is used to add explanatory notes to the code or to prevent the browser from interpreting specific parts of the style sheet.
A CSS comment is placed inside <style> element, and starts with /* and ends with */.
Example:
/*This is a single line comment*/
From the HTML tutorial, you learned that you can add comments to your HTML source by using syntax.