Button at the center and bottom of div

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

    I used table-row to combine text and button in one container:

    #out{
        display:table;
        position:absolute;
    }
    
    #out div#textContainer{
        display:table-row;
    }
    #out div#text{
        display:table-cell;
        vertical-align:top;
    }
    
    #out div#buttonContainer{
        display:table-row;
        text-align:center;
    }
    #out div#button{
        display:table-cell;
        vertical-align:bottom;
    }
    

    CodePen

提交回复
热议问题