【发布时间】:2014-08-18 15:37:33
【问题描述】:
我注意到如果 id 或 class 从数字开始,则不会应用 css 属性。例如,以下都不起作用:
.1ww{
/* some properties here */
}
和
.1{
/* some properties here */
}
和
#1{
/* some properties here */
}
和
#1ww{
/* some properties here */
}
为什么 CSS 不支持从数字开始的 id 或类名? (例如,Javascript 适用于数字 id 和类)
【问题讨论】:
-
由于您接受了一个没有解决“为什么”问题的答案,因此不清楚您在问什么。
标签: css