Posted on 2008. 3. 5. 13:03
Filed Under Javascript
부모페이지에...
<iframe name="burdenPrintIframe" id="burdenPrintIframe" frameborder="0" width="640" height="800" src="BurdenPrint.html" scrolling="yes" marginwidth="0" marginheight="0" ></iframe>
여기서... scrolling="yes" 로 준다.
iframe페이지에...
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
overflow-y: auto;
overflow-x: hidden;
}
-->
</style>
이렇게 스타일 주면 가로스크롤이 생기지 않는다..
세로스크롤은 overflow-y: hidden; 으로 제어한다.
<iframe name="burdenPrintIframe" id="burdenPrintIframe" frameborder="0" width="640" height="800" src="BurdenPrint.html" scrolling="yes" marginwidth="0" marginheight="0" ></iframe>
여기서... scrolling="yes" 로 준다.
iframe페이지에...
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
overflow-y: auto;
overflow-x: hidden;
}
-->
</style>
이렇게 스타일 주면 가로스크롤이 생기지 않는다..
세로스크롤은 overflow-y: hidden; 으로 제어한다.