Button at the center and bottom of div

后端 未结 9 1224
醉酒成梦
醉酒成梦 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条回答
  •  死守一世寂寞
    2021-02-06 12:14

    Give the parent element…

    display: table; text-align: center;
    

    …and its child element…

    display: table-cell; vertical-align: bottom;
    

    This way you do not need to know the width of the child element in case it changes, thus requiring no negative margins or workarounds.

提交回复
热议问题