writing comments in css code example
Example 1: comment out css inline
/* this is some commented out css
.my-field{
font-size:10px;
border:1px solid red;
}
*/
Example 2: comments in css
/*comment here*/
Example 3: css comment
/* CSS comment
any line */
<!-- HTML comment
any line -->
// Javascript comment single line
/* Javascript comment
multiline */