为什么我的iFrame仍然显示滚动条?

时间:2011-11-17 12:57:08

标签: html iframe

我在我的网站中创建了一个iframe。当我点击网站的另一部分时它会加载。但是,我不希望它显示滚动条,但即使我的代码中显示属性设置为no,它们也会显示。有没有人有任何想法?

<iframe id="theFrame" src="" style="width:800px; height:450px; border:0px solid black; overflow:hidden;" scrolling="no"></iframe>

2 个答案:

答案 0 :(得分:2)

得到了这个排序 - 我在这个iframe中打开了我自己的解决方案中的另一个页面。

<style type="text/css">
html, body {
    height: 100%;
    overflow: auto;
}
body {
    padding: 0;
    margin: 0;
}
#silverlightControlHost {
    height: 100%;
    text-align:center;

}
</style>

我需要将溢出更改为隐藏在此页面上,并且工作正常。

答案 1 :(得分:-1)

您可以尝试将overflow:hidden;添加到样式属性中。