Vertical align in bootstrap table

后端 未结 7 1998
萌比男神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:18

    SCSS

    .table-vcenter {
        td,
        th {
            vertical-align: middle;
        }
    }
    

    use

提交回复
热议问题