css section comments example
Example 1: comment css
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
Example 2: comment in css
/* This is how you comment in CSS */
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
/* This is how you comment in CSS */