gpt4 book ai didi

css - Parent div,有两个 child ,其中一个有准确的高度,如何给另一个 child "free left"空间作为高度

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

如标题所述,我有一个父 div 和两个子 div(div1 和 div2),假设父 div 始终是其父 div 的 100%。例如,我给div1设置了200px的高度,如何让div2把其他左边的空间作为它的高度,父级的100%高度减去兄弟的200px。

最佳答案

仅使用 css

你可以在css中计算div2的高度

div2{
height :calc(100℅ - 200px);
}

您可以在 mozilla documentation 阅读有关 calc() 的更多信息

JavaScript 方式

你可以查看jsfiddle here

解释计算div和div1的高度,将减去的高度赋值给div2

var h = document.querySelector("#one").offsetHeight
var h2 = document.querySelector("#two").offsetHeight
document.querySelector("#three").style.height = (h - h2)+"px";

关于css - Parent div,有两个 child ,其中一个有准确的高度,如何给另一个 child "free left"空间作为高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44370874/

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