Live Brilliant

ipad iframe scroll 문제 본문

개발은 핵찜이야/HTML/CSS

ipad iframe scroll 문제

주인정 2015. 10. 15. 09:47

[문제]

아이패드에서 iframe을 이용한 페이지가 스크롤 작동문제


<style>

iframe {

width: 100%;

height: 100%;        

}    

#ifr_wrap{

width: 100%;

  height: 1000px;

  position: relative;

  overflow-x: hidden;

  overflow-y: scroll;

  -webkit-overflow-scrolling: touch;

}

</style>


<div id="ifr_wrap">

<iframe src="main.php" frameborder="0" scrolling="auto" />

</iframe>

</div>


Comments