gpt4 book ai didi

css - div 中心和底部的按钮

转载 作者:太空狗 更新时间:2023-10-29 16:49:17 31 4
gpt4 key购买 nike

如何让一个按钮同时位于div的底部和中心?

.Center {
width: 200px;
height: 200px;
background: #0088cc;
margin: auto;
padding: 2%;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}

.btn-bot {
position: absolute;
bottom: 0px;
}
<div class=Center align='center'>
<button class='btn-bot'>Bottom button</button>
</div>

最佳答案

给父元素...

display: table; text-align: center;

……及其子元素……

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

这样您就不需要知道子元素的宽度以防它发生变化,因此不需要负边距或变通方法。

关于css - div 中心和底部的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22162560/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com