Natürliche Kautschukbänder

<style>
body{
margin: 0; /* Remove default margin */
}
iframe{
display: block; /* iframes are inline by default */
height: 100vh; /* Set height to 100% of the viewport height */
width: 100%; /* Set width to 100% of the viewport width */
border: none; /* Remove default border */
}
</style>


<iframe id="myIframe" src="https://movementroadmap.com/natural-rubber-bands-by-movement-made"></iframe>

<script>
// Selecting the iframe element
var iframe = document.getElementById("myIframe");

// Adjusting the iframe height onload event
iframe.onload = function(){
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}
</script>