使用iframe滚动条问题

时间:2014-06-28 10:24:18

标签: html css iframe

我面临的问题是: 当我设置一个iframe - 在我的html网站 - 为了显示另一个html页面,我在左边有两个滚动条但我无法滚动。 我想要的是滚动主页而不是iframe内的页面。

内部框架:

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

</div>

IE和FF上存在的问题不在Chrome上。

1 个答案:

答案 0 :(得分:0)

尝试

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