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.
ラベルの固定幅を使用してすべての入力要素を垂直方向に揃えようとしていますが、期待した結果が得られません。
label { width: 75px; }
ここに私が例を使って作成した Fiddle があります: http://jsfiddle.net/xRmHj/ 何か提案はありますか?
試してみてください:
display:inline-block;
あなたのラベルに。
http://jsfiddle.net/xRmHj/1/
label { width: 75px; display: inline-block; }
http://jsfiddle.net/xRmHj/2/