css notes 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: css notes
body {
font-size: 62.5% /* 1em = 10px */
}
/* this is some commented out css
.my-field{
font-size:10px;
border:1px solid red;
}
*/
body {
font-size: 62.5% /* 1em = 10px */
}