gpt4 book ai didi

html - 获取前一个元素的高度

转载 作者:太空宇宙 更新时间:2023-11-04 10:32:41 25 4
gpt4 key购买 nike

我可以仅使用 CSS 获取前一个元素的高度吗?我正在使用 calc() 函数来动态设置 div B 的高度。

#b{
height:calc(100vh - heightOfPreviousElement);
}

我需要知道前一个元素的高度。

enter image description here

据我所知,100vh 等于屏幕高度的 100%。

我在下面的答案中使用了代码。使用 flex,

我有一个问题。橙色的高度变小。 enter image description here

最佳答案

您可以使用 flexbox 轻松实现您想要的效果。诀窍是允许蓝色容器(具有灵活高度的容器)在需要时增加尺寸,使用 flex: 1 1 auto,它只是以下内容的简写:

flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;

请参阅下面的概念验证代码片段:

body {
padding: 0;
margin: 0;
}
.wrapper {
display: flex;
flex-direction: column;
flex-wrap: no-wrap;
align-items: center;
justify-content: center;
height: 100vh;
}
.wrapper > div {
width: 100%;
}
#c1 {
background-color: #880015;
color: #fff;
height: 60px;
margin-bottom: 10px;
}
#c2 {
background-color: #ff7f27;
}
#c3 {
background-color: #00a2e8;
flex: 1 1 auto;
margin-bottom: 10px;
}
<div class="wrapper">
<div id="c1">height: 60px</div>
<div id="c2">height: auto (determined by content?)</div>
<div id="c3">flexible height</div>
</div>

关于html - 获取前一个元素的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36388124/

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