up vote 131 down vote favorite
35
share [g+] share [fb]

What characters/symbols are allowed within CSS class names? Characters such as:

~ ! @ $ % ^ & * ( ) _ + - = , . / ' ; : " ? > < [ ] \ { } | ` #

I know a lot of these are invalid, but which are valid?

link|improve this question

1  
Related question: stackoverflow.com/questions/2812072/… – BalusC Jul 7 '10 at 17:17
3  
what about utf8 characters? Like i may type in greek – Parhs Nov 27 '10 at 17:33
feedback

7 Answers

up vote 127 down vote accepted

You can check directly at the CSS grammar.

Basically1, a name must begin with an underscore (_), a dash (-), or a letter(az), followed by any number of dashes, underscores, letters, or numbers. There is a catch: if the first character is a dash, the second character must2 be a letter or underscore, and the name must be at least 2 characters long.

-?[_a-zA-Z]+[_a-zA-Z0-9-]*

Identifiers beginning with a dash or underscore are typically reserved for browser-specific extensions, as in -moz-opacity.

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. --indent1, is invalid. However, I'm pretty sure I've seen this in practice.

link|improve this answer
8  
According to the blog entry in my answer, underscore as the first character won't work in IE6. – Paolo Bergantino Jan 15 '09 at 23:43
7  
NB: The W3C says that the use of a leading '-' or '_' should be reserved for vendor-specific CSS extensions (e.g., -moz* classes implemented by Mozilla browsers). – mipadi Jan 15 '09 at 23:44
11  
@Paolo, IE6 doesn't determine what is "valid," which is what the original question asked for. – strager Jan 15 '09 at 23:49
2  
The \-escapes are commonly used, but generally mostly for the purposes of CSS hacks, isolating browsers that don't support them. – bobince Jan 15 '09 at 23:59
2  
To update @Pim Jager's comment over two years later, according to w3counter.com/globalstats.php IE6 is now used by less than 3% of users, behind IE9 on 4%, IE7 on 9%, IE8 on 22%. All versions of Firefox have 28%, all versions of Chrome have 17%. – Daniel Earwicker Jun 15 '11 at 13:49
show 6 more comments
feedback

Read the W3C spec. (this is CSS 2.1, find the appropriate version for your assumption of browsers)

edit: relevant paragraph follows:

In CSS, identifiers (including element names, classes, and IDs in selectors) can contain only the characters [a-z0-9] and ISO 10646 characters U+00A1 and higher, plus the hyphen (-) and the underscore (_); they cannot start with a digit, or a hyphen followed by a digit. Identifiers can also contain escaped characters and any ISO 10646 character as a numeric code (see next item). For instance, the identifier "B&W?" may be written as "B\&W\?" or "B\26 W\3F".

edit 2: as @mipadi points out in Triptych's answer, there's this caveat, also in the same webpage:

In CSS, identifiers may begin with '-' (dash) or '_' (underscore). Keywords and property names beginning with '-' or '_' are reserved for vendor-specific extensions. Such vendor-specific extensions should have one of the following formats:

'-' + vendor identifier + '-' + meaningful name 
'_' + vendor identifier + '-' + meaningful name

Example(s):

For example, if XYZ organization added a property to describe the color of the border on the East side of the display, they might call it -xyz-border-east-color.

Other known examples:

 -moz-box-sizing
 -moz-border-radius
 -wap-accesskey

An initial dash or underscore is guaranteed never to be used in a property or keyword by any current or future level of CSS. Thus typical CSS implementations may not recognize such properties and may ignore them according to the rules for handling parsing errors. However, because the initial dash or underscore is part of the grammar, CSS 2.1 implementers should always be able to use a CSS-conforming parser, whether or not they support any vendor-specific extensions.

Authors should avoid vendor-specific extensions

link|improve this answer
feedback

The complete regular expression is:

-?(?:[_a-z]|[\200-\377]|\\[0-9a-f]{1,6}(\r\n|[ \t\r\n\f])?|\\[^\r\n\f0-9a-f])(?:[_a-z0-9-]|[\200-\377]|\\[0-9a-f]{1,6}(\r\n|[ \t\r\n\f])?|\\[^\r\n\f0-9a-f])*

So all of your listed character except “-” and “_” are not allowed if used directly. But you can encode them using a backslash foo\~bar or using the unicode notation foo\7E bar.

link|improve this answer
feedback

I’ve answered your question in-depth here: http://mathiasbynens.be/notes/html5-id-class

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:

If you were to give an element an ID value of ~!@$%^&*()_+-=,./';:"?><[]{}|`#, the selector would look like this:

CSS:

<style>
  #\~\!\@\$\%\^\&\*\(\)\_\+-\=\,\.\/\'\;\:\"\?\>\<\[\]\\\{\}\|\`\#

{ background: hotpink; }

JavaScript:

<script>
  // document.getElementById or similar
  document.getElementById('~!@$%^&*()_+-=,./\';:"?><[]\\{}|`#');
  // document.querySelector or similar
  $('#\\~\\!\\@\\$\\%\\^\\&\\*\\(\\)\\_\\+-\\=\\,\\.\\/\\\'\\;\\:\\"\\?\\>\\<\\[\\]\\\\\\{\\}\\|\\`\\#');
</script>
link|improve this answer
+1 but why would you need to have a class named that!! :P – Darryl Hein Jul 6 '11 at 21:38
2  
@Darryl Of course, this is a pretty extreme example, but stuff like class="404-error" can be useful. – Mathias Bynens Jul 7 '11 at 15:12
feedback

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.

link|improve this answer
feedback

For HTML5/CSS3 classes and IDs can start with numbers.

link|improve this answer
Do you have a source for this? Maybe I'm missing something, but the CSS3 selectors spec links to the identifiers definition in the CSS 2.1 spec which doesn't permit leading numbers. – Ryan Nov 27 '10 at 21:45
@Ryan: Here’s a resource for that: mathiasbynens.be/notes/html5-id-class – Mathias Bynens Jul 7 '11 at 15:12
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.