无法使用css隐藏iframe水平滚动条

时间:2014-02-05 21:08:17

标签: html css html5

http://validator.w3.org/已使用我的代码返回以下验证错误。

  

第140行,第109列:iframe元素的滚动属性   已经过时了。请改用CSS。 ... d“scrolling =”no“   SRC = “http://crea8tion.com/PP/usercapture/index.php” >

我搜索了谷歌并在stackoverflow上找到了以下解决方案。

The scrolling attribute on the iframe element is obsolete. Use CSS instead

所以我改变了我的html以删除scrolling =“no”,现在我的html目前看起来像这样

<iframe class="restricted" src="http://crea8tion.com/PP/usercapture/index.php"></iframe>

和我的CSS一样

.restricted
     {
    width:auto;overflow-y:hidden; height:280px;overflow-x:hidden;

        }

但我的页面上仍然有一个水平滚动条。我错过了什么?

1 个答案:

答案 0 :(得分:2)

iframe是一个新文档。内部文档可能正在创建滚动条。