Bootstrap 3 align button text underneath GlyphIcon

12,993

Add the text-center helper class to the .btn, and add a <br> after the icon, before the 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

Share:
12,993
AdRock
Author by

AdRock

Father of 2, living with partner, finished at Exeter University

Updated on June 27, 2022

Comments

  • AdRock
    AdRock almost 2 years

    I have this code that creates some Bootstrap 3 buttons with a GlyphIcon and some text but the problem is the text is aligned right of the icon. How can i align the text underneath the 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>