Button at the center and bottom of div

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

    Does the button need to be absolutely positioned? If so, you could specify a width and then a negative left margin:

    .btn-bot{
        position: absolute;
        left: 50%;
        width: 100px;
        margin-left: -50px;
        bottom:0px;
    }
    

    fiddle

提交回复
热议问题