小编use*_*381的帖子

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)

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

html css twitter-bootstrap twitter-bootstrap-3

6
推荐指数
3
解决办法
3万
查看次数