아이프레임 사용시 문서크기를 자동으로 조절하려면 아래 소스를 아이프레임 내의 제일 하단에 넣어 주세요. <script> document.body.scrollIntoView(true); parent.document.all.inner1.height = document.body.scrollHeight; </script> 그리고 아이프레임 소스를 아래와 같이 만들어 주세요. <iframe id=inner1 src='test.htm' width=600 h..