Centering a button vertically in table cell, using Twitter Bootstrap

前端 未结 6 771
盖世英雄少女心
盖世英雄少女心 2020-12-07 15:42

I\'m using Twitter Bootstrap, and attempting to center a button within a table cell. I only really need it centered vertically.

6条回答
  •  时光取名叫无心
    2020-12-07 16:02

    So why is td default set to vertical-align: top;? I really don't know that yet. I would not dare to touch it. Instead add this to your stylesheet. It alters the buttons in the tables.

    table .btn{
      vertical-align: top;
    }
    

提交回复
热议问题