Most of my program validates, but this part:
<iframe src="link.html" width='800' height='500' scrolling="no">
</iframe>
gives this validation error:
"Error: The scrolling attribute on the iframe element is obsolete. Use CSS instead."
I've tried using overflow: hidden, which seems to be the common solution but the user is still able to scroll. I'd like the iframe to not have a scroll bar and have the user unable to scroll.
Thanks for any help.