Adjust width and height of iframe to fit with content in it

前端 未结 30 2392
旧时难觅i
旧时难觅i 2020-11-22 02:09

I need a solution for auto-adjusting the width and height of an iframe to barely fit its content. The point is that t

30条回答
  •  旧时难觅i
    2020-11-22 02:43

    Javascript to be placed in header:

    function resizeIframe(obj) {
            obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
          }
    

    Here goes iframe html code:

    
    

    Css stylesheet

    >

    .spec_iframe {
            width: 100%;
            overflow: hidden;
        }
    

提交回复
热议问题