使用Bootstrap单选按钮垂直对齐文本

时间:2015-04-08 11:07:52

标签: html css html5 twitter-bootstrap radio-button

我遇到了Bootstrap无线电输入的问题,我似乎无法将对齐方式垂直放在文本中间。

    <div class="tab-content">

    <div class="tab-pane" id="Type">

    <form>

        <div class="form-group">

              <input type="radio"               
               value="Server"
               checked="checked"
               class="form-control" 
               style="width: 34px; display: inline-block" />

            <label for="WindowsServer">Windows Server / PC</label><br />                                
        </div>
    </form>
    </div>
    </div>

任何人都可以指出我做错了什么或我能做些什么来解决这个问题?

1 个答案:

答案 0 :(得分:2)

得到了这个分类 - 经过多次游戏后,我添加了一种风格:

input{
vertical-align:bottom;
}

现在收音机和文字完全对齐了!