How to vertical align middle a button in a dynamic div

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

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

3条回答
  •  花落未央
    2021-02-19 14:25

    The problem is that the padding on the H4 is more than the button. You can wrap you button inside the H4 (perhaps not the best practice), or change the button padding in your CSS..

    {{rootNode.nodeName}}

    OR, leave the button as is, and apply this CSS to the H4..

    h4 {
      margin-top: -0.5em;
    }
    

    http://bootply.com/106259

提交回复
热议问题