1

我正在使用 twitter 引导程序,我有一个带有链接的表单,应该打开一个带有输入的弹出窗口。由于某种原因,链接没有垂直对齐。我想知道在表单中做锚的“引导方式”是什么。这是 jsFiddle: http: //jsfiddle.net/3j7QP/4/
这是 html:

<form class="form-horizontal" id="postForm">
    <fieldset>
        <div class="control-group">
            <label class="control-label" for="start_location">Origin</label>
            <div class="controls">
                <a id="start_location" name="start_location" href="javascript:;">open select tooltip</a>
            </div>            
        </div>
    </fieldset>
</form>
4

1 回答 1

3

正如您在这个jsfiddle 演示中看到的那样,您应该使用.help-inline该类(或.help-block根据您的需要),但即使使用该类,如果您不输入任何内容,您也需要进行调整。

<div class="controls noinput">
    <span class="help-inline"><!-- <a> --></span>
</div>
.controls.noinput > .help-inline { line-height: 28px; }

28px值可能会因您的引导变量而异。它基本上等于control-group高度。

于 2012-08-04T20:38:24.880 回答