我在iframe周围使用 div 并将溢出设置为隐藏在 div 的css中 内容被剪裁。
我很想知道,有没有办法获得可见内容?
以下是代码:
<div class="problemBox">
<iframe id="problem" src="child.html"></iframe>
</div>
<style>
.problemBox {
width: 300px;
height: 300px;
overflow: hidden;
}
.problemBox iframe {
width: 100%;
height: 100%;
}
</style>