Button at the center and bottom of div

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

    For example write like this if you have position absolute:

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

    Note: give margin-left half of the width of the button.

    JSFiddle demo

提交回复
热议问题