gpt4 book ai didi

css - height 100 and iframe = 两个滚动条

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

我有一个:

<div style="height:100%">
<div id="menu" style="height:30px;width:100%">Ouhlala</div>
<iframe width="100%" frameborder="0" height="100%" src="baba"></iframe>
</div>

它显示了 2 个滚动条。 iframe 的高度是 100% 但最终是 100% + 30px。不知道怎么解决

最佳答案

您可以使用属性 calc() 像这样:

<div class="container">
<div id="menu" style="height:30px;width:100%">Ouhlala</div>
<iframe frameborder="0" src="baba"></iframe>
</div>

CSS

.container iframe{
height:calc(100% - 30px);
}

坏处可能是兼容性 check it here

关于css - height 100 and iframe = 两个滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21004456/

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