Link to home
Start Free TrialLog in
Avatar of m_evergreen
m_evergreen

asked on

overflow:auto; Causes Horizontal Scroll in IE But Vertical Scroll in Firefox

Is there a way to have Horizontal Scroll in both browsers?
Avatar of archrajan
archrajan

Avatar of m_evergreen

ASKER

I'm not sure which part of the discussion at the link provided applies to me.  Maybe I wasn't clear with my problem.  I'm using:

#container
{
      height:171px;
      width:183px;
      overflow: auto;
}

with

<div id="container">
                              <table><tr><td>
                          <a href="dl/72312d54_EarthLipstick1.zip"><img src="Items/EarthLipstick1.gif" title="Tan Lipstick" width="179" height="145" border="0"></a><a href="dl/22c298fa_BrownLipstick.zip"><img src="Items/BrownLipstick.gif" title="Brown Lipstick" width="179" height="145" border="0"></a><img src="Items/ComingSoon.gif" title="Coming Soon" width="179" height="145" border="0">
                            </td>
                              </tr></table>
    </div>

In Internet Explorer this produces a scrollbox which scrolls horizontally so that each image can be viewed and selected, which is what I want.  In Firefox it produces a vertical scrollbar so that each image must be viewed vertically going down.  This is not what I want.  Can I get Firefox to show the images horizontally like IE does?
ASKER CERTIFIED SOLUTION
Avatar of seanpowell
seanpowell
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ah ha!  Thank you!