在不同的浏览器中查看http://jsfiddle.net/YRP7Z/。
我已将overflow:hidden
添加到div
anf iframe
,但滚动条仍显示在Chrome& IE7-8。在FF4中工作正常。
任何线索?
答案 0 :(得分:0)
要修复Chrome中的问题,您只需将 scrolling =“no”属性添加到iframe:
<html>
<body style="background-color: tan;">
<div id="DOMWindow" style="">
<iframe id="DOMWindowIframe" frameborder="0" src="http://www.yahoo.com" scrolling="no">
</div>
</body>
</html>