CSS Comments
The syntax for CSS Comments is very similar to that of other programming and scripting languages like PHP and JavaScript.
Unlike PHP and JavaScript though, CSS comments can only be used one way.
Begin your comment with a /*, and end it with */. As an example:
/* Hey, this is a comment */
The comment block can [...]
