Iframe 无法在页面放大时滚动到底部



我的页面上有一个已禁用滚动的iframe。但是,父滚动条无法到达页面底部。iframe内容被截断。我能在这里得到一些帮助吗?代码笔链接:https://codepen.io/zhr1130/pen/oNdzGdz

html,body {
height:100%;
}
.container {
position: relative;
width: 100%;
overflow: visible;
height:100%;
}
.responsive-iframe {
width: 100%;
height: 100%;
}
<!DOCTYPE html>
<html>
<body>
<h1>The iframe element</h1>
<h2>Responsive Iframe</h2>
<p>Resize the window to see the effect.</p>
<div class="container">
<iframe src="https://www.redfin.com/" title="W3Schools Free Online Web Tutorials"       scrolling="no" width="100%" height="100%" class="responsive-iframe">
</iframe>
</div>
</body>
</html>

使Iframe高度:auto;检查以下代码

html,body {
height:100%;
}
.container {
position: relative;
width: 100%;
overflow: visible;
height:100%;
}
.responsive-iframe {
width: 100%;
height: auto;
}
<!DOCTYPE html>
<html>
<body>
<h1>The iframe element</h1>
<h2>Responsive Iframe</h2>
<p>Resize the window to see the effect.</p>
<div class="container">
<iframe src="https://www.redfin.com/" title="W3Schools Free Online Web Tutorials"       scrolling="no" width="100%" height="100%" class="responsive-iframe">
</iframe>
</div>

最新更新