0
http://validator.w3.org/已使用我的代碼返回了以下驗證錯誤。無法隱藏使用css的iframe水平滾動條
行140,欄109:iframe元素 上的滾動屬性已過時。改用CSS。 ... d」 SCROLLING = 「無」 SRC = 「http://crea8tion.com/PP/usercapture/index.php」>
我搜索谷歌和發現計算器以下解決方案。
The scrolling attribute on the iframe element is obsolete. Use CSS instead
所以我改變了我的HTML刪除SCROLLING = 「無」,現在我的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;
}
但我仍然有一個水平滾動條出現在我的頁面上。我錯過了什麼?
看看是否有幫助http://stackoverflow.com/a/18649273/961695 –
這是幫助解決問題的有用部分。 – Dano007