Key words: iframe css scrollHeight fit actual height smooth<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iframe fit to actual height</title>
<script>
function resizeIFrameToFitContent()
{
iFrame1.width = "800px"; // iFrame.contentWindow.document.body.scrollWidth;
iFrame1.height = iFrame.contentWindow.document.body.scrollHeight+20;
}
</script>
</head>
<body>
<iframe name="iFrame1" src="" style="border:none" onload="resizeIFrameToFitContent()"></iframe>
</body>
</html>
>>> Another option <<<
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open to Div Height</title>
<style>
#viewhightmaindata {
transition:height 3s ease, opacity 7s ease;
height:0px;
opacity:0;
background-color:#FFF;
}
</style>
<script>
str = "";
str = `<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.aaaaaaaaaaaaaaa`;
function openView() // Activate the preview
{
dom1 = document.getElementById("viewhightmaindata");
dom1.innerHTML = str; // the content
dom1.style.height = dom1.scrollHeight+"px";
dom1.style.opacity = "1";
}
</script>
</head>
<body>
<div id="viewhightmainpage" style="background-color:#EEE;" onclick="openView()">Click for your requested info
<div id="viewhightmaindata"></div>
</div>
<br>
<div align="center">
<h1>Open height div</h1>
</div>
</body>
</html>