css - Bootstrap 3 align button text underneath GlyphIcon -
css - Bootstrap 3 align button text underneath GlyphIcon -
i have code creates bootstrap 3 buttons glyphicon , text problem text aligned right of icon. how can align text underneath icon?
<div class="btn-group"> <button type="button" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-file"></span>archive</button> <button type="button" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-trash"></span>delete</button> </div> <button type="button" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-share"></span>resend</button>
add text-center
helper class .btn
, , add together <br>
after icon, before text.
<button type="button" class="btn btn-default btn-lg text-center"><span class="glyphicon glyphicon-share"></span><br>resend</button>
demo: http://www.bootply.com/swzsbpwpwc
css button twitter-bootstrap-3 glyphicons
Comments
Post a Comment