What characters/symbols are allowed within CSS class names? Characters such as:
~ ! @ $ % ^ & * ( ) _ + - = , . / ' ; : " ? > < [ ] \ { } | ` #
I know a lot of these are invalid, but which are valid?
|
What characters/symbols are allowed within CSS class names? Characters such as:
I know a lot of these are invalid, but which are valid? |
||||
|
You can check directly at the CSS grammar. Basically1, a name must begin with an underscore (
Identifiers beginning with a dash or underscore are typically reserved for browser-specific extensions, as in 1 It's all made a bit more complicated by the inclusion of escaped unicode characters (that no one really uses). 2 Note that, according to the grammar I linked, a rule starting with TWO dashes, e.g. |
|||||||||||||||||||||
|
|
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:
|
||||
|
|
|
To my surprise most answers here are wrong. It turns out that: Any character except NUL is allowed as CSS class name in CSS. (If CSS contains NUL (escaped or not), the result is undefined. [CSS-characters]) Mathias Bynens’ answer links to explanation and demos showing how to use these names. Written down in CSS code, a class name may need escaping, but that doesn’t change the class name. E.g. an unnecessarily over-escaped representation will look different from other representations of that name, but it still refers to the same class name. Most other (programming) languages don’t have that concept of escaping variable names, so all representations of a variable have to look the same. This is not the case in CSS. Note that in HTML there is no way to include space characters (space, tab, line feed, form feed and carriage return) in a class name attribute, because they already separate classes from each other. So, if you need to turn a random string into a CSS class name: take care of NUL and space, and escape (accordingly for CSS or HTML). Done. |
|||||||
|
|
I’ve answered your question in-depth here: http://mathiasbynens.be/notes/css-escapes The article also explains how to escape any character in CSS (and JavaScript), and I made a handy tool for this as well. From that page:
|
|||||||
|
|
The complete regular expression is:
So all of your listed character except “ |
|||
|
|
|
For HTML5/CSS3 classes and IDs can start with numbers. |
|||||||||
|
|
My understanding is that the underscore is technically valid. Check out: https://developer.mozilla.org/en/underscores_in_class_and_id_names "...errata to the specification published in early 2001 made underscores legal for the first time." The article linked above says never use them, then gives a list of browsers that don't support them, all of which are, in terms of numbers of users at least, long-redundant. |
|||
|
|
.hello/worldclass by escaping the backslash:.hello\2fworld,hello\2f worldorhello\/world– pyrokinetiq Jun 5 '12 at 0:18