How to vertical align middle a button in a dynamic div

后端 未结 3 1382
时光取名叫无心
时光取名叫无心 2021-02-19 13:44

I\'d like to center a vertically aligned button in a div using bootstrap

3条回答
  •  Happy的楠姐
    2021-02-19 14:29

    You can use display:inline-block and vertical-align:middle:

    .col-xs-2, .col-xs-10 {
        display: inline-block;
        float: none;
    }
    .col-xs-10 {
        vertical-align: middle;
    }
    

    Here's a demo fiddle.

    Though you will have to make sure to remove the white space in between the column

    s in your markup. Refer to this answer for more information on that.

提交回复
热议问题