Hiding scrollbars in a <div> object

I've got something that's been working perfectly within some browsers, but
not most, and I'm wondering if someone could give me some help or tell me if
it's even possible. Within a particular page I have a <div> object where I
want to be able to scroll up and down, but not left and right. As such, I
don't want to even see the left-right scroll bar. What I've done works in
IE, but not in pretty much anything else. I use the following:

 

overflow: scroll;

            overflow-x: hidden;

            overflow-y: scroll;

 

When it doesn't work, the horizontal scroll bar just remains there greyed
out or something because there's nothing to scroll. I'd prefer it to just be
hidden. Anyone know of any workaround or whether or not overflox-x/y will
ever become a standard in CSS? Thanks in advance.

 

Best regards,
Rajib Momen

President, Director of I.T.
Boston Computing Network
http://www.bostoncomputing.net 

 

Received on Monday, 30 August 2004 19:54:05 UTC