I need to hide the horizontal scollbar on an iframe using css, jquery or js.
I'd suggest doing this with a combination of
overflow-y: hidden;
scrolling="no"
seamless="seamless"
* The seamless attribute has been removed from the standard, and no browsers support it.
seamless
.foo { width: 200px; height: 200px; overflow-y: hidden; }
<iframe src="https://bing.com" class="foo" scrolling="no" > </iframe>
1.4m articles
1.4m replys
5 comments
57.0k users