Center Twitter Bootstrap 3 Glyphicons in buttons

后端 未结 10 2036
情话喂你
情话喂你 2020-12-13 17:16

I am now using Twitter Bootstrap 3 RC2 as well as Twitter Bootstrap which has moved into a separate repository. I have noticed, if used in a button with text the icon is no

10条回答
  •  一向
    一向 (楼主)
    2020-12-13 18:07

    For some vertical-align might not work due to positioning: If you look into .glyphicon class you'll see it is set to relative, try setting it to 'inherit' e.g:

    .glyphicon.v-centered {
        position: inherit;
        vertical-align: middle;
    }
    

    This should also work for icons not in buttons, e.g. tabs.

提交回复
热议问题