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; }
这是我用一个例子创建的小提琴:http: //jsfiddle.net/xRmHj/ 有 什么建议吗?
label { width: 75px; display: inline-block; }
http://jsfiddle.net/xRmHj/2/
尝试:
display:inline-block;
在你的标签上。
http://jsfiddle.net/xRmHj/1/