当光标位于iFrame区域时没有滚动(Firefox)

时间:2012-07-03 10:48:15

标签: html css firefox iframe

我的网站有一个居中的iframe,它有一个固定的高度和宽度。所以你不能在iframe中滚动,但你可以滚动整个方面。

问题:当我想要滚动整个方面,但我将鼠标放在iframe的区域上时,它不起作用。我必须将鼠标移到侧面,以便它不再在iframe上方。我在Firefox中只有这个问题。

iFrame的CSS,正文滚动是标准的:

.frame{
    width:1024px;
    height:768px;
    top:50%;
    margin-top:-384px;
    border:0;
    z-index:1;
    overflow:hidden;
    position:absolute;
}

1 个答案:

答案 0 :(得分:0)

删除您的CSS overflow属性。

.frame{
    width: 1024px;
    height: 768px;
    top: 50%;
    margin-top: -384px;
    border: 0;
    z-index: 1;
    overflow: scroll; /* not necessary */
    position: absolute;
}