I am working on a landing page with a width of 760 pixels, and I need a frame with content (flash demo) with a width of 980 pixels. So I need to have a horizontal scrollbar to view all the content. However, no matter what I add as scroll attributes (for example, scrolling = "auto / yes", etc.), Nothing happens - there is no horizontal scroll bar at all.
The page displayed in the iframe has the following command in the source code:
body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; overflow-x: hidden; }
As far as I understand, this is the reason that my iframe does not have a horizontal scrollbar. Is there a workaround for this to get one?
source share