I know it's recommended to use letters and the dash, but what if I want to use a teste1/10
class, what's the recommendation?
I know it's recommended to use letters and the dash, but what if I want to use a teste1/10
class, what's the recommendation?
According to the CSS CSS Grammar you can not use teste1/10
.
A name should start with letters ( a-z
) or a hyphen ( -
) or underscore ( _
), or a letter ( a-z
), followed by any number, underscores, letters or numbers.
You can use teste110
or teste1-10
or teste1_10
in your case.
Based on this response of the English stackoverflow.