I need to hide scroll in Iframe
You can try this combination in your code:
overflow-y: hidden;
scrolling="no"
(for HTML4)seamless="seamless"
(for HTML5) <!-- begin snippet: js hide: false -->
<!-- language: lang-css -->
.foo-class {
width: 200px;
height: 200px;
overflow-y: hidden;
}
<!-- language: lang-html -->
<iframe src="https://google.com"
class="foo-class"
scrolling="no"
seamless="seamless">
</iframe>
<!-- end snippet -->
FavScripts.com is a free tool to save your favorite scripts and commands, then quickly find and copy-paste your commands with just few clicks.
Boost your productivity with FavScripts.com!