简体   繁体   中英

Scroll bar issue with iframe

The issue I am facing is that: When I set an iframe - in my html website – in order to show another html page, i get 2 scroll bars on the left but I cant scroll at all. What I want is to scroll the main page and not the pages inside the iframes.

Iframes:

<div class="sixteen columns">
<div id="main"  style="position: absolute">
    <iframe src="html5/Project1.html" height="700px" width=" 1000" scrolling="no"></iframe>

</div>

The problem exists on IE and FF not on Chrome.

尝试

 <iframe src="html5/Project1.html" style="overflow:hidden;width:1000px;height:70px"</iframe>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM