gpt4 book ai didi

html - Bootstrap 自动高度面板

转载 作者:太空宇宙 更新时间:2023-11-04 09:06:19 26 4
gpt4 key购买 nike

我有 3 个面板(见图) Panel View

Panel1 的高度根据内容改变高度。Panel2 具有固定高度。我的问题是:我希望 Panel3 有一个“完美”的高度,例如 height = panel1.height - panel2.height

但我不知道我该怎么做。

最佳答案

试试这样的——

使用javascript

var panel1Height = document.getElementById('panel1').clientHeight;
var panel2Height = '20';
var panel3Height = panel1Height - panel2Height;
document.getElementById("panel3").style.height= panel3Height + 'px';

注意这只是一个模型,可以根据您的需要进行定制。

关于html - Bootstrap 自动高度面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42436809/

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