Twitter Bootstrap 3中按钮组之间的水平分隔符

use*_*381 6 html css twitter-bootstrap twitter-bootstrap-3

我试图在单选按钮组之间放一些文本....我试过了两个

<hr>
Run Code Online (Sandbox Code Playgroud)

<br>
Run Code Online (Sandbox Code Playgroud)

标签.但它不起作用......文本始终坚持按钮组.这是我的代码

<div class="btn-group btn-group-sm" data-toggle="buttons">

          <label class="btn btn-default">
    <input type="radio" name="options" id="option1"> <span class="glyphicon glyphicon-music"> MP3</span></label>
         <label class="btn btn-default">
    <input type="radio" name="options" id="option2"> <span class="glyphicon glyphicon-music"> WAV</span></label>

<hr>
<p>Use conversion tools</p>

<label class="btn btn-default">
    <input type="radio" name="options" id="option3"> <span class="glyphicon glyphicon-film"> MKV</span></label>
        <label class="btn btn-default">
    <input type="radio" name="options" id="option4"> <span class="glyphicon glyphicon-film"> FLV</span></label>
 </div>  
Run Code Online (Sandbox Code Playgroud)

我的目的是在组选择之间创建一些差距或使用分隔符.

Mar*_*hls 13

尝试使用:

<hr class="separator">
Run Code Online (Sandbox Code Playgroud)

这是关于bootstrap文档的内容.


小智 7

你也可以用

<hr class="featurette-divider">
Run Code Online (Sandbox Code Playgroud)


pau*_*dru 5

试试这个:

<div class="clearfix"></div>
<br><br>
Run Code Online (Sandbox Code Playgroud)