@denis
You can disable the horizontal scroll bar in an iframe by adding the following CSS code to the style attribute of the iframe element:
1
|
<iframe style="overflow-x: hidden;"></iframe> |
This CSS code sets the overflow-x property to hidden, which will hide the horizontal scroll bar in the iframe.