我的网站有一个居中的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;
}
答案 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;
}