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

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -