본문 바로가기
FullStack/10. WeB

[HTML] Iframe 사이즈에 따른 Frame 조절

by nakanara 2020. 11. 16.
반응형

아이프레임으로 불러온 화면의 높이를 확인하여, 프레임에 설정하여 스크롤이 안 생기도록 하기

동적으로 화면을 구성하는 것이 아니면, 간편하게 하는 방법인 것 같다.

<iframe id='frame' 
    src='framepage.html'
    frameborder='0'
    scrolling='no' 
    style='width: 100%;'
    onload="this.style.height=(this.contentWindow.document.body.scrollHeight+20)+'px';"></iframe>

 

* stackoverflow.com/questions/9975810/make-iframe-automatically-adjust-height-according-to-the-contents-without-using

반응형