Centering a button vertically in table cell, using Twitter Bootstrap

前端 未结 6 780
盖世英雄少女心
盖世英雄少女心 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:11

    A little update for Bootstrap 3.

    Bootstrap now has the following style for table cells:

    .table tbody>tr>td
    {
        vertical-align: top;
    }
    

    The way to go is to add a your own class, with the same selector:

    .table tbody>tr>td.vert-align
    {
        vertical-align: middle;
    }
    

    And then add it to your tds

提交回复
热议问题