gpt4 book ai didi

javascript - 我怎样才能根据其中最大标签的最大涨幅来给所有标签页高度

转载 作者:行者123 更新时间:2023-11-28 01:04:36 26 4
gpt4 key购买 nike

我怎样才能根据其中最大标签的最大上升来给所有标签页高度

example

<div id="" class="tab-pane fade  in active">
<ul class="autoValidate nav nav-tabs nav-justified nav-thirdlevel hidden-xs">
<li class="active"><a data-toggle="tab" href="#tab1">tab1</a></li>
<li><a data-toggle="tab" href="#tab2">tab2</a></li>
<li><a data-toggle="tab" href="#tab3">tab3</a></li>
</ul>
<div class="panel-group visible-xs" id="undefined-accordion"></div>
<div class="tab-content tab-contentlevel hidden-xs stander-Page-Height">
<div id="tab1" class="tab-pane fade active in"> // for example this tab height is 400px
// something....
</div>
<div id="tab2" class="tab-pane fade"> // for example this tab height is 600px
// something....
</div>
<div id="tab3" class="tab-pane fade"> // for example this tab height is 500px
// something....
</div>
</div>
</div>

我如何使用 (css || js || jquery) 将页面中的每个选项卡的高度设置为 600px

非常感谢UW

最佳答案

.tab-content { 
display:flex;
flex-direction: row;
align-items: strech
// other css rules
}

将 align-items 设置为 strech 时,所有子项都将被迫填充其父项的高度。

关于javascript - 我怎样才能根据其中最大标签的最大涨幅来给所有标签页高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52455739/

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