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
2010-01-11 05:20:59