What characters/symbols are allowed within CSS class names? Things such as:
~ ! @ $ % ^ & * ( ) _ + - = , . / ' ; : " ? > < [ ] \ { } | ` #
I know a lot of these are invalid, but which are valid?
|
6
|
What characters/symbols are allowed within CSS class names? Things such as:
I know a lot of these are invalid, but which are valid?
|
||
|
|
|
|
You can check directly at the CSS grammar. Basically, a name may start with an underscore (
Identifiers beginning with a dash or underscore are typically reserved for browser-specific extensions, as in 1) Note that, according to the grammar I linked, a rule starting with TWO dashes, e.g. 2) It's all made a bit more complicated by the inclusion of escaped unicode characters (that no one really uses). |
||||||||||||
|
|
|
Read the W3C spec. (this is CSS 2.1, find the appropriate version for your assumption of browsers) edit: relevant paragraph follows:
edit 2: as @mipadi points out in Triptych's answer, there's this caveat, also in the same webpage:
|
|||
|
|
|
|
The complete regular expression is:
So all of your listed character except “ |
||
|
|
|
|
For HTML5/CSS3 classes and IDs can start with numbers. |
||
|
|