EN
HTML - disable iframe scrollbar
3
points
In this article, we would like to show you how to disable iframe scrollbar using HTML attribute.
Quick solution:
<iframe scrolling="no"></iframe>
Practical example
In this example, we disable scrolling inside the iframe using scrolling attribute set to no.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<body>
<iframe src="https://dirask.com/findings"
style="width: 80%; height: 250px"
scrolling="no">
</iframe>
</body>
</html>