Button at the center and bottom of div

后端 未结 9 1336
醉酒成梦
醉酒成梦 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:16

    One way of doing this would be to give it an absolute width and then a margin half of that:

    width: 250px;
    margin-left: -125px;
    

    Another way would be to give the div the following line-height and remove all styles from the button:

    line-height: 398px;
    

提交回复
热议问题