Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は自分のコードでそのような状況を見つけましたが、その説明を見つけることができません。Chrome(および他のブラウザ)が幅をautoに設定し、私の無視するのはwidth: 15pxなぜですか?
width: 15px
スクリーンショットは次のとおりです。
spansはinline要素です。inline要素の幅を設定することはできません。
span
inline
display幅を設定するには、要素のプロパティを変更する必要があります。
display
.elem { display: inline-block; }
CSSボックスモデルの詳細については、以下をお読みになることをお勧めします。