我有一个iframe
,当网页在滚动内部调用时,它无法使用Mozilla Firefox
。
它在Internet Explorer
和Google Chrome
中工作正常。
<iframe name="contentFrame" id="contentFrame" SRC="<c:out value='${CONTENT_FRAME_URL}'/>" margin width=0 marginheight=0
vspace=0 hspace=0 scrolling=no WIDTH=780 height="350" frameborder="0" allowtransparency="true"
style="position:absolute;overflow:hidden;border:none;">
</iframe>
为什么mozilla firefox不支持这个?
crome将此解释为
<iframe name="contentFrame" id="contentFrame" src="empty.jsp" marginwidth="0" marginheight="0" scrolling="no" width="780" height="180%" frameborder="0" allowtransparency="true" style="position: absolute; overflow: hidden; border: none; height: 1003px;">
</iframe>
atomatic在样式中添加一些高度来调整卷轴的大小。 但是mozzila无法做到这一点。
答案 0 :(得分:0)
尝试使用overflow: auto;
我想知道为什么这适用于IE和Chrome
答案 1 :(得分:0)
尝试在宽度和高度值之后放置px
像这样:width =“780px”