jsp - Mozilla iframe scrolling -
i have iframe
, when web page calling inside scrolling not working mozilla firefox
.
it's working fine in 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>
why doesn't mozilla firefox support this?
crome interpreted
<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 add height in style in adjust size of scroller. mozzila not able this.
try using overflow: auto;
wondering why working ie , chrome
Comments
Post a Comment