> For the complete documentation index, see [llms.txt](https://olise-eke.gitbook.io/frontend-tutorial-for-beginners/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://olise-eke.gitbook.io/frontend-tutorial-for-beginners/overview/css/css-comments.md).

# CSS Comments

CSS comments can be added using `/* and */` to add notes and explanations to your code. Comments are ignored by the browser and can be helpful for making your code easier to read and understand. For example:

`/* This is a CSS comment */`&#x20;

`selector { /* This is also a comment */ property: value; /* This is a comment at the end of a line */ }`
