can you add comments to css file code example
Example 1: comment css
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
Example 2: CSS comemnts
/* a css comment */
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
/* a css comment */