I'm trying to put text between a group of radio buttons ... I tried both
<hr>
and
<br>
tag. But this does not work ... Text always refers to a group of buttons. This is my code.
<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>
I intend to create some space or use a separator between group choices.
source share