gpt4 book ai didi

css - 将 div 定位到包含 div 的底部

转载 作者:数据小太阳 更新时间:2023-10-29 09:06:27 25 4
gpt4 key购买 nike

如何将一个 div 定位到包含 div 的底部?

<style>
.outside {
width: 200px;
height: 200px;
background-color: #EEE; /*to make it visible*/
}
.inside {
position: absolute;
bottom: 2px;
}
</style>
<div class="outside">
<div class="inside">inside</div>
</div>

此代码将文本“内部”置于页面底部。

最佳答案

.outside {
width: 200px;
height: 200px;
background-color: #EEE; /*to make it visible*/
}

需要

.outside {
position: relative;
width: 200px;
height: 200px;
background-color: #EEE; /*to make it visible*/
}

绝对定位查找 DOM 中最近的相对定位的父级,如果未定义,它将使用主体。

关于css - 将 div 定位到包含 div 的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15358646/

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