/
CSS Comments
CSS Comments
CSS only support old school C comments - that begin with /* and end with */ like this:
/* This is a comment */
/* This rule is commented out
.MAINpanel { border: black solid; }
*/
The big problem with CSS comments is you that you cannot easily nest them. Probably the best tool is to be rigorous about separating concerns and keep each CSS file small so you don’t have to comment big sections of CSS at time.
, multiple selections available,
Related content
CSS gotchas
CSS gotchas
More like this
What is CSS?
What is CSS?
More like this
How SASS CSS preprocessors can make for complex CSS
How SASS CSS preprocessors can make for complex CSS
More like this
Problems that CSS preprocessors tried to solve that can be done using plain CSS
Problems that CSS preprocessors tried to solve that can be done using plain CSS
More like this
Make a CSS sandbox!
Make a CSS sandbox!
More like this
CSS Preprocessor - Don't use them
CSS Preprocessor - Don't use them
More like this