在输入旁边的表格中对齐标签

时间:2012-03-13 14:57:02

标签: html css alignment

我有非常基本和已知的表单场景,我需要正确对齐输入旁边的标签。但是我不知道该怎么做。

我的目标是将标签与右侧的输入对齐。这是期望结果的图片示例。

enter image description here

为了方便起见,我已经做了一个小提琴,并澄清了我现在的情况 - http://jsfiddle.net/WX58z/

段:

<div class="block">
    <label>Simple label</label>
    <input type="text" />
</div>
<div class="block">
    <label>Label with more text</label>
    <input type="text" />
</div>
<div class="block">
    <label>Short</label>
    <input type="text" />
</div>

8 个答案:

答案 0 :(得分:166)

一种可能的解决方案:

  • 提供标签display: inline-block;
  • 给他们一个固定的宽度
  • 将文字对齐

那是:

label {
  display: inline-block;
  width: 140px;
  text-align: right;
}​
<div class="block">
    <label>Simple label</label>
    <input type="text" />
</div>
<div class="block">
    <label>Label with more text</label>
    <input type="text" />
</div>
<div class="block">
    <label>Short</label>
    <input type="text" />
</div>

JSFiddle

答案 1 :(得分:12)

之前回答过这样的问题,你可以看一下这里的结果:

Creating form to have fields and text next to each other - what is the semantic way to do it?

因此,要将相同的规则应用于您的小提琴,您可以使用display:inline-block并排显示您的标签和输入组,如下所示:

<强> CSS

input {
    margin-top: 5px;
    margin-bottom: 5px;
    display:inline-block;
    *display: inline;     /* for IE7*/
    zoom:1;              /* for IE7*/
    vertical-align:middle;
    margin-left:20px
}

label {
    display:inline-block;
    *display: inline;     /* for IE7*/
    zoom:1;              /* for IE7*/
    float: left;
    padding-top: 5px;
    text-align: right;
    width: 140px;
}

updated fiddle

答案 2 :(得分:12)

虽然这里的解决方案是可行的,但最近的技术已经成为我认为更好的解决方案。 CSS网格布局使我们能够构建更优雅的解决方案。

下面的CSS提供了一个2列“设置”结构,其中第一列预期是右对齐标签,后面是第二列中的一些内容。通过将其包装在&lt; div&gt;中,可以在第二列中呈现更复杂的内容。

[作为旁注:我使用CSS添加跟踪每个标签的':',因为这是一个风格元素 - 我的偏好。]

/* CSS */

div.settings {
    display:grid;
    grid-template-columns: max-content max-content;
    grid-gap:5px;
}
div.settings label       { text-align:right; }
div.settings label:after { content: ":"; }
<!-- HTML -->

<div class="settings">
    <label>Label #1</label>
    <input type="text" />

    <label>Long Label #2</label>
    <span>Display content</span>

    <label>Label #3</label>
    <input type="text" />
</div>

答案 3 :(得分:7)

我使用类似的东西:

<div class="form-element">
  <label for="foo">Long Label</label>
  <input type="text" name="foo" id="foo" />
</div>

风格:

.form-element label {
    display: inline-block;
    width: 150px;
}

答案 4 :(得分:4)

您也可以尝试使用flex-box

<head><style>
body {
    color:white;
    font-family:arial;
    font-size:1.2em;
}
form {
    margin:0 auto;
    padding:20px;
    background:#444;
}
.input-group {
    margin-top:10px;
    width:60%;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}
label, input {
    flex-basis:100px;
}
</style></head>
<body>

<form>
    <div class="wrapper">
        <div class="input-group">
            <label for="user_name">name:</label>
            <input type="text" id="user_name">
        </div>
        <div class="input-group">
            <label for="user_pass">Password:</label>
            <input type="password" id="user_pass">
        </div>
    </div>
</form>

</body>
</html>

答案 5 :(得分:1)

我知道这是一个旧线程,但是更简单的解决方案是将输入嵌入到标签中,如下所示:

<label>Label one: <input id="input1" type="text"></label>

答案 6 :(得分:0)

这是所有表单标签的通用标签宽度。没有固定宽度。

使用所有标签调用setLabelWidth计算器。 此功能将在UI上加载所有标签,并找出最大标签宽度。 将以下函数的返回值应用于所有标签。

     this.setLabelWidth = function (labels) {
            var d = labels.join('<br>'),
                dummyelm = jQuery("#lblWidthCalcHolder"),
                width;
            dummyelm.empty().html(d);
            width = Math.ceil(dummyelm[0].getBoundingClientRect().width);
            width = width > 0 ? width + 5: width;
            //this.resetLabels(); //to reset labels.
            var element = angular.element("#lblWidthCalcHolder")[0];
            element.style.visibility = "hidden";
            //Removing all the lables from the element as width is calculated and the element is hidden
            element.innerHTML = "";
            return {
                width: width,
                validWidth: width !== 0
            };

        };

答案 7 :(得分:0)

您可以执行以下操作:

HTML:

tcpdump

CSS:

<div class='div'>
<label>Something</label>
<input type='text' class='input'/>
<div>

希望这会有所帮助! :)