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:
xxxxxxxxxx
1
<iframe scrolling="no"></iframe>
In this example, we disable scrolling inside the iframe using scrolling
attribute set to no
.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<iframe src="https://dirask.com/findings"
5
style="width: 80%; height: 250px"
6
scrolling="no">
7
</iframe>
8
</body>
9
</html>