我的大多数程序都会验证,但这一部分:
<iframe src="link.html" width='800' height='500' scrolling="no">
</iframe>
给出了此验证错误:
&#34;错误:iframe元素上的滚动属性已过时。改用CSS。&#34;
我尝试过使用overflow:hidden,这似乎是常见的解决方案,但用户仍然能够滚动。我希望iframe没有滚动条并让用户无法滚动。
感谢您的帮助。
答案 0 :(得分:0)
尝试使用css:
iframe {
width:800px;
height:500px; /* you have to specify width and heigth, otherwise overflow has no meaning */
overflow-x:hidden;
overflow-y:hidden
}
/* optionally, you could add the following code, to keep scrolling (but not the scrollbar) for touchscreen devices */
iframe::-webkit-scrollbar {
display: none;
}