Reputation: 83
I have an iframe in my website which appear with a horizontal scrollbar. I can't remove this scrollbar. I have tried overflow: hidden
and scrolling= no
Upvotes: 0
Views: 337
Reputation:
Try scrolling="no"
you should add double quotes around the no
and also add a height and width to it
Upvotes: 1
Reputation: 25237
Could it be that the thing showing the scrollbar is not the <iframe>
but one of the components on the document being loaded inside?
If the content of the iframe is not responsive, it is most likely that this is the cause of you not being able to make it disappear, since CSS (as far as I know) can't control the styles of the document inside an iframe.
Upvotes: 0