Vertical align in bootstrap table

后端 未结 7 1990
萌比男神i
萌比男神i 2020-12-23 02:54

I am trying to display a table with 4 columns, one of which is an image. Below is the snapshot:-\"enter

7条回答
  •  离开以前
    2020-12-23 03:17

    The following appears to work:

    table td {
      vertical-align: middle !important;
    }
    

    You can apply to a specific table as well like so:

    #some_table td {
      vertical-align: middle !important;
    }
    

提交回复
热议问题