Iframe Adjustment .iframe-container { position: relative; width: 100%; height: 5000px; /* Adjust as needed */ overflow: hidden; } .iframe-container iframe { position: absolute; left: 0; width: 100%; height: 100%; border: none; }
function adjustIframeHeight() { var iframe = document.querySelector("iframe"); var containerWidth = iframe.parentElement.offsetWidth; iframe.style.height = (containerWidth * 1) + "px"; // Adjust the aspect ratio as needed } window.addEventListener("resize", adjustIframeHeight); window.addEventListener("load", adjustIframeHeight);