본문 바로가기
Web Program/Html Lecture

iframe 안의 가로 스크롤 없애기

by 현이빈이 2009. 4. 21.
반응형
부모창
<iframe src="result.php" width="100%" height="193" frameborder="0" scrolling="yes" style="overflow-x:hidden" /></iframe>       


iframe 페이지
<style type="text/css">
<!--
 body {
  overflow-y:auto;
  overflow-x: hidden;
 }
-->
</style> 
반응형