gpt4 book ai didi

html - 使绝对定位的div成为父容器的高度

转载 作者:行者123 更新时间:2023-11-28 10:00:32 28 4
gpt4 key购买 nike

如何使红色 div 的高度等于父黄色 div 的高度?

HTML:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="main">
<div class="left">
</div>
<div class="right">
</div>
</div>
</body>
</html>

CSS:

.main {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0px;
background-color: yellow;
overflow: auto;
}

.left {
background-color: orange;
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 2000px;
}

.right {
background-color: orangered;
position: absolute;
top: 0;
left: 200px;
right: 0;
bottom: 0;
}

此处示例:http://jsbin.com/fafexulube/edit?html,css,output

更新:左侧div的高度不能改变,它有2000px表示它比它的父级高。

最佳答案

如果您将父级的 position 设置为 static 以外的值,您可以使用 height:100%;top :0; bottom:0; 在 child 身上。

如果想让兄弟定义父的高度,可以不设置为position:absolute;

看看这个更新后的 jsbin:http://jsbin.com/qavihuleme/3/edit .

具体来说,将 position:relative; 添加到父级并从兄弟级 (.left) 中删除 position:absolute;

关于html - 使绝对定位的div成为父容器的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28332850/

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