I noticed that css properties aren't applied if id or class starts from number. For example, none of following will work:
.1ww{
/* some properties here */
}
and
.1{
/* some properties here */
}
and
#1{
/* some properties here */
}
and
#1ww{
/* some properties here */
}
Why doesn't CSS support ids or class names, starting from numbers? (Javascript, for example, works with numeric ids and classes)