简体   繁体   English

使用Bootstrap在输入框下对齐标签

[英]Align labels under input boxes using Bootstrap

I'm not sure how to go about getting the effect I want here. 我不确定如何在这里获得想要的效果。 I have two input boxes that are on the same line and I want to have labels underneath them and aligned to match the respective input box. 我在同一行上有两个输入框,我想在它们下面放置标签并对齐以匹配相应的输入框。

<div class="container">
   <form class="form-inline" role="form">
      <div class="form-group">
          <label for="decimal_input">Label 1</label>
          <input type="text" value="1" width="10" id="decimal_input" class="form-control" />
          = <label for="input2">Label 2</label> 
          <input type="text" value="I" width="30" id="input2" class="form-control" />
      </div>
</div>
</form>

Take a look at the jsfiddle here for more info: 在这里查看jsfiddle以获得更多信息:

http://jsfiddle.net/justinhj/bTVKZ/2/ http://jsfiddle.net/justinhj/bTVKZ/2/

http://jsfiddle.net/isherwood/bTVKZ/6 http://jsfiddle.net/isherwood/bTVKZ/6

<div class="container">
    <form class="form-inline" role="form">
        <div class="form-group">
            <div class="pull-left">
                <input type="text" value="1" width="10" id="decimal_input" class="form-control" />
                <br />
                <label for="decimal_input">Label 1</label>
            </div>
            <div>
                <input type="text" value="I" width="30" id="input2" class="form-control" />
                <br />
                <label for="input2">Label 2</label>
            </div>
        </div>
    </form>
</div>

You may try this 你可以试试这个

Extra CSS: 额外的CSS:

label {
   display:block;
}

.form-group {
    display:inline-block;
}

Modified HTML: 修改后的HTML:

<div class="container">
    <form class="form-inline" role="form">
        <div class="form-group">
            <input type="text" value="1" width="10" id="decimal_input" class="form-control" />
            <label for="decimal_input">Label 1</label>
        </div>
        <div class="form-group">
            <input type="text" value="I" width="30" id="input2" class="form-control" />
            <label for="input2">Label 2</label>
        </div>
    </form>
</div>    

DEMO. 演示。

Your new HTML: 您的新HTML:

<div class="container">
    <form class="form-inline" role="form">
        <div class="form-group">
            <span class="inner-container">
                <label for="decimal_input">Label 1</label>
                <input type="text" value="1" width="10" id="decimal_input" class="form-control" />
            </span>
            =
            <span class="inner-container">
                <label for="input2">Label 2</label>
                <input type="text" value="I" width="30" id="input2" class="form-control" />
            </span>
        </div>
</div>
</form>
</diV>

Your new CSS (of course I would add a class to the labels): 您的新CSS(当然,我会在标签上添加一个类):

.container {
    margin-top: 10px;
}

.inner-container {
    position: relative;
}

label {
    top: 25px;
    left: 5px;
    position: absolute;
}

here's the fiddle 这是小提琴

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM