Answers for "iframe example width height"

0

how to show iframe in full width

<div>
  <div style="position:relative;padding-top:56.25%;">
    <iframe src="https://www.youtube.com/embed/nckseQJ1Nlg" frameborder="0" allowfullscreen
      style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe>
  </div>
</div>
Posted by: Guest on May-22-2021
0

iframe 100 height of content

<script>
  function resizeIframe(obj) {
    obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
  }
</script>
Posted by: Guest on July-07-2021

Browse Popular Code Answers by Language