CSS 对齐标签和输入
HTML 代码片段:
<fieldset id="o-bs-sum-buginfo">
<label for="o-bs-sum-bug-ErrorPrefix">Error Prefix</label>
<input type="text" id="o-bs-sum-bug-ErrorPrefix" name="ErrorPrefix" value="" />
<label for="o-bs-sum-bug-ErrorNumber">Error Number</label>
<input type="text" id="o-bs-sum-bug-ErrorNumber" name="ErrorNumber" value="" />
....
</fieldset>
仅使用 CSS(或 jquery),无论浏览器大小如何,我都希望将标签和输入元素彼此配对。我也可以自由地更改和调整 HTML。如果需要的话。
HTML Code Snippet:
<fieldset id="o-bs-sum-buginfo">
<label for="o-bs-sum-bug-ErrorPrefix">Error Prefix</label>
<input type="text" id="o-bs-sum-bug-ErrorPrefix" name="ErrorPrefix" value="" />
<label for="o-bs-sum-bug-ErrorNumber">Error Number</label>
<input type="text" id="o-bs-sum-bug-ErrorNumber" name="ErrorNumber" value="" />
....
</fieldset>
Using only CSS (or jquery), irrespective of the browser size, I want to pair label and input elements next to each other. I also do have freedom to change tweak the HTML. if required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是一件非常难以做好的事情。
许多人会建议使用
float:left;
来实现这一点。就我个人而言,我真的不喜欢花车;它们造成的问题似乎比解决的问题还要多。我的偏好是使用内联块。这是一种将内联属性(因此您可以轻松地将元素彼此相邻对齐等)与块属性(例如能够指定尺寸)相结合的显示方法。
所以答案很简单,让它们都
display:inline-block;
并给提示一个固定的宽度,这将使它们旁边的输入字段对齐。您还需要在输入字段后进行某种换行或换行,否则下一个提示将出现在同一行,这不是所需的效果。实现此目的的最佳方法是将每个提示及其字段放入容器
中。
所以你的 HTML 看起来像这样:
你的 CSS 看起来像这样:
编辑:
您可以使用此插件设置每个标签的宽度:
在此页面的评论中
,您可以这样使用它:
仅此而已...您的所有标签都将采用最长标签的宽度
This is one of those things which can be surprisingly tricky to get right.
Many people will suggest using
float:left;
for this. Personally, I really dislike floats; they seem to cause more problems than they solve.My preference is to use inline-block. This is a display method that combines inline properties (so you can easily align elements next to each other, etc) with block properties (such as being able to specify dimensions).
So the answer is simply to make them both
display:inline-block;
and give the prompts a fixed width, which will make the input fields next to them line up.You'll also need some sort of line feed or break after the input field, otherwise the next prompt will appear on the same line, which isn't the desired effect. The best way to achieve this is to put each prompt and its field into a container
<div>
.So your HTML will look like this:
and your CSS will look like this:
Edit:
you can use this plugin for setting the width of each label:
from this page in a comment
and you use it this way:
and thats all... all your labels are going to take the width of the longest label
#o-bs-sum-buginfo 标签,#o-bs-sum-buginfo 输入{display:inline-block;width:50%;}
#o-bs-sum-buginfo label, #o-bs-sum-buginfo input{display:inline-block;width:50%;}
将每个标签及其相应的输入放入 ap 标签中。然后添加以下CSS:
Put the every label with its corresponding input into a p tag. Then add the following css:
我认为使用 javascript 来实现简单的 css 技巧有点过分了。
这是我刚刚做的:
http://jsfiddle.net/t6R93/
PS:其他浏览器可能存在缺陷。我只用 Chrome 进行了测试。
I think using javascript for a simple css trick is overkill.
Here is the one i made just now:
http://jsfiddle.net/t6R93/
PS: It may have flaws with other browsers. I only tested with Chrome.
无需使用 JavaScript、jQuery 或其他
div
。您只需:input
和label
浮动到左侧(请注意,input
必须是块才能浮动)。clear: Both
添加到label
。100px
)设置为label
。There's no need to use JavaScript, jQuery, or additional
div
s. You just have to:input
andlabel
to left (note thatinput
has to be block to be floated).clear: both
tolabel
.100px
) tolabel
.我很好奇是否可以使用“自然”语义标记来完成此操作,即没有非语义包装元素并且使用包含其相应的输入的
label
而不是必须使用稍微笨拙的for
属性来引用它:固定宽度的标签不会对齐此处的输入,因为文本不是单独的元素,并且 Shahid 优雅的最小解决方案不起作用要么,但如果你愿意让所有输入具有相同的宽度(恕我直言,无论如何看起来都不错),你可以
浮动
它们right
:-moz-box当 FF29 发布时,-sizing
应该是多余的,甚至不需要box-sizing
,除非您混合表单控件类型。clear
和overflow
是textarea
特别需要的。完整的混合输入类型示例:
I was curious to see if this could be done with the "natural" semantic markup, i.e. with no non-semantic wrapper elements and with the
label
containing its correspondinginput
rather than having to refer to it with the slightly clunkyfor
attribute:A fixed-width label won't align the inputs here because the text isn't a separate element, and Shahid's elegantly minimal solution doesn't work either, but if you're willing to make all inputs the same width (which IMHO looks nice anyway) you can
float
themright
:The
-moz-box-sizing
should be redundant when FF29 is released, and even thebox-sizing
isn't needed unless you're mixing form control types. Theclear
andoverflow
are specifically needed fortextarea
.Full mixed-input-type example: