gpt4 book ai didi

html - 如何使用 HTML IFrame 实现自动宽度

转载 作者:太空狗 更新时间:2023-10-29 13:42:43 25 4
gpt4 key购买 nike

我正在尝试使用 iframe 打开其他 URL。但出于某种原因,iframe 的宽度固定为 155px。

我需要调整 iframe 的宽度以适合整个 SRC iframe。

<!DOCTYPE html>
<html>
<body>
<iframe frameborder="0" scrolling="no" height="100%" width="100%" src="http://www.gnu.org/"></iframe>
</body>
</html>

我试过 width="100%",但没用。

最佳答案

Demo

html, body {
height:100%;
width:100%;
margin:0;
}
.h_iframe iframe {
width:100%;
height:100%;
}
.h_iframe {
height: 100%;
width:100%;
}

HTML

<div class="h_iframe">
<iframe src="//www.youtube.com/embed/9KunP3sZyI0" frameborder="0" allowfullscreen></iframe>
</div>

关于html - 如何使用 HTML IFrame 实现自动宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23218332/

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