WordPress页面中的iframe全高问题(无滚动条)

发布于 2024-12-29 07:26:28 字数 504 浏览 0 评论 0原文

我正在尝试获取此代码

<iframe src="http://www.play-asia.com/paOS-38-19-0,,none,0,0,0,0,trans,000000,left,0,0-49-en-76-5-70-dhf7-6-2-78-2i-90-f8z9-33-iframe_banner-40-6-44-100%2525.html" style="border-style: none; border-width: 0px; border-color: #FFFFFF; padding: 0px; margin: 0px; scrolling: vertical; frameborder: 0;" scrolling="vertical" frameborder="0" width="100%25" height="1428"></iframe>

来填充页面(高度方面)并且没有滚动条我尝试并尝试使用CSS但没有任何运气

任何人有任何想法如何/如果我这样做? 谢谢

Am trying to get this code

<iframe src="http://www.play-asia.com/paOS-38-19-0,,none,0,0,0,0,trans,000000,left,0,0-49-en-76-5-70-dhf7-6-2-78-2i-90-f8z9-33-iframe_banner-40-6-44-100%2525.html" style="border-style: none; border-width: 0px; border-color: #FFFFFF; padding: 0px; margin: 0px; scrolling: vertical; frameborder: 0;" scrolling="vertical" frameborder="0" width="100%25" height="1428"></iframe>

To fill the page (height wise) and also without the scroll bar ive tryed and tryed to use css without any luck

Anyone have any ideas how/if I do do this?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩心不撩汉 2025-01-05 07:26:28

使 iframe 绝对定位:

iframe { position: absolute; top: 0px; left: 0px;}

您谈论的是按高度填充页面,但您有一个设定的高度。您还谈论“没有滚动条”,但您已打开滚动。上面的代码将帮助您的 iframe 跳出它的容器来填充页面,只要它的容器不是 position:relative

Make the iframe absolutely positioned:

iframe { position: absolute; top: 0px; left: 0px;}

You talk about filling the page height-wise but you have a set height. You also talk 'without scrollbars' but you have scrolling turned on. The code above will help your iframe jump out of it's container to fill the page as long as its container is not position: relative

披肩女神 2025-01-05 07:26:28

尝试 style="overflow: none;" 作为 iframe 属性

Try style="overflow: none;" as an iframe atribute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文