Button at the center and bottom of div

后端 未结 9 1337
醉酒成梦
醉酒成梦 2021-02-06 11:35

How to make a button be at the bottom of div and at the center of it at the same time?

9条回答
  •  Happy的楠姐
    2021-02-06 12:01

    You can use display: table-cell and vertical-align: bottom to achieve this, although you need a container div set to display: table.

    HTML

    CSS

    .boxContainer {
        display: table;
    }
    .box {
        width: 200px;
        height: 200px;
        background: #0088cc;
        padding: 2%;
        display: table-cell;
        text-align: center;
        vertical-align: bottom;
    }
    

    Demo

提交回复
热议问题