comment box css code example
Example 1: comment css
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
Example 2: comments in css
/* This text is commented in CSS :) */
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
/* This text is commented in CSS :) */