gpt4 book ai didi

html - 绝对位置但相对于父级

转载 作者:行者123 更新时间:2023-11-27 22:48:47 25 4
gpt4 key购买 nike

我在另一个 div 中有两个 div,我想使用 css 将一个子 div 定位到父 div 的右上角,将另一个子 div 定位到父 div 的底部。即,我想对两个子 div 使用绝对定位,但将它们定位为相对于父 div 而不是页面。我怎样才能做到这一点?

示例 html:

<div id="father">
<div id="son1"></div>
<div id="son2"></div>
</div>

最佳答案

#father {
position: relative;
}

#son1 {
position: absolute;
top: 0;
}

#son2 {
position: absolute;
bottom: 0;
}

这是有效的,因为 position: absolute 意味着“使用 top, right, bottom, left 以相对于具有 position: absoluteposition: relative 的最近祖先定位自己。”

所以我们让#fatherposition: relative, child 有position: absolute,然后使用topbottom 来定位 child 。

关于html - 绝对位置但相对于父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59552172/

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