Prefer single-line comments (//) over multi-line (/* ... */) since they're not rendered in the final CSS.
//
/* ... */
.mybox { /* blabla... */ color: green; }
.mybox { // blabla... color: green; }