`overflow:hidden`不会在Chrome和IE中隐藏滚动条

问题描述

|| 在不同的浏览器中查看http://jsfiddle.net/YRP7Z/。 我在
div
iframe
中都添加
overflow:hidden
,但仍在Chrome&IE7-8中出现滚动条。在FF4中工作正常。 有什么线索吗?     

解决方法

要解决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>