October 2009
1 post
2 tags
Tip: a lot of folks seem to think that starting a CSS class with a number is impossible. They are wrong. You can start your classes with numbers if you really want to, but you have to use a special syntax in the actual CSS. For instance:
<div class="404">No love!</div>
In the CSS you would target this div like so:
.\34 04 {
/* styling here */
}
The weirdness at the...