此问题在此处已有答案:
Adjust width and height of iframe to fit with content in it(36个答案)
13个小时前关门了。
我有一个内嵌pdf文件的iframe,但我想确保iframe根据其中的内容自动扩展其高度,以便不显示iframe滚动条,但每次我尝试时,结果都出乎意料。以下是我的示例代码
这是我尝试过的
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Iframe</title>
<style>
iframe{
width: 100%;
border: 2px solid #ccc;
}
</style>
</head>
<body>
<iframe src="demo.pdf" id="myIframe"></iframe>
<script>
var iframe = document.getElementById("myIframe");
iframe.onload = function(){
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}
</script>
</body>
</html>
1条答案
按热度按时间xlpyo6sf1#
height
fit-content