tags:

views:

77

answers:

1

I have an HTML iframe. I want it to be scrollable vertically, but not horizontally. Is this possible?

+2  A: 

Automatically shows vertical scrollbar if content is longer than viewable area:

.iframe-class { overflow-x:hidden; overflow-y:auto; }

Forces vertical scrollbar even if content is not longer than viewable area:

.iframe-class { overflow-x:hidden; overflow-y:scroll; }
drlouie - louierd