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;
}
ここでわかるように、現在は発生していません
に置き換えることで問題を解決しまし400-
たfour
。となりfourwidth
ます。