爲什麼你不能在CSS中使用數字,是否有另一種工作方式?我有以下代碼:CSS無法選擇帶有數字的類/標識符?
<div class="center 400-width" id="position">
<div class="" id="header">
Header
</div>
<div class="" id="content">
Content
</div>
<div class="" id="footer">
Footer
</div>
</div>
的CSS選擇類400-width
這意味着容器得到的400px
的寬度。 background-color
用於檢查是否爲真。
.400-width{
width:400px;
background-color:blue;
color:white;
}
它,你可以看到here
我通過four
更換400-
解決了這個問題並沒有馬上發生。所以它變成了fourwidth
。
你可以在css類中使用數字,但不能作爲第一個字符。 – fcalderan
看看[這個問題](http://stackoverflow.com/questions/448981/what-characters-are-valid-in-css-class-selectors) –