Click to See Complete Forum and Search --> : Iframe scrollbar
absolutmgd13
12-05-2007, 09:06 AM
Does anybody happen to know an efficient way to remove the horizontal scrolll in an iframe, while leaving the vertical scroll alone?
FYI- i have access to the Iframe only! NO head, body or stylesheet.
Tricky eh?:confused:
WebJoel
12-05-2007, 09:15 AM
overflow-y:scroll; (force a vertical-only scrollbar: grayed-out if not needed), or
overflow-y:auto; (no vertical scrollbar visible unless content exceeds stated height).
The overflow-y implicitly means no x-overflow (that is, no horizontal scrolling, but I think that a vertical scrollbar is mandatory anyway, due to Accessibility and thus, it cannot be 'removed').
absolutmgd13
12-05-2007, 09:29 AM
i tried adding the following to the iframe:
<iframe style="overflow-y:scroll;"></iframe>
and it still show the horizontal scrollbar.. is that the correct format?