I need to hide a iframe's scrollbar with CSS, but the HTML attribute scroll="no"
is the only thing that works. I don't want to use it because it is not supported with HTML5. This is my CSS:
iframe {
width: 600px;
height: 490px;
border: none;
overflow: hidden;
}
That didn't help. I have tried developer.mozilla.org, but it only showed the non-supported attribute. Do I need to use JavaScript?
By the way, what does the non-supported attribute seamless="seamless"
mean?