Ale-Jandra
Ale-Jandra

Reputation: 83

Iframe scrollbar not going away

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

Answers (3)

user7613413
user7613413

Reputation:

Try scrolling="no" you should add double quotes around the no

and also add a height and width to it

Upvotes: 1

Enrique Moreno Tent
Enrique Moreno Tent

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

Colin Lightfoot
Colin Lightfoot

Reputation: 549

Try overflow-x: hidden. That might fix it.

Upvotes: 0

Related Questions