Click to See Complete Forum and Search --> : disable scrollbars in ns?


ahasverus
05-22-2003, 09:01 AM
Is it possible to disable scrollbars in ns and/or opera like in IE?

I'm working with div's that go partly out of the screen, the problem is that when they are completely on screen there is no scrollbar, but when they are partly offscreen scrollbars appear in NS5+ and opera.

pyro
05-22-2003, 09:06 AM
Allow horizontal scroll, but not vertical scroll:

<body style="overflow-y:hidden;">

Allow vertical scroll, but not horizontal scroll:

<body style="overflow-x:hidden;">

ahasverus
05-22-2003, 10:38 AM
Thank you!

I tried some sites with an css-tutorial but I didn't find this.

Do you know where I can find an online reference guide for css?

pyro
05-22-2003, 10:43 AM
CSS1: http://www.w3.org/TR/REC-CSS1/
CSS2: http://www.w3.org/TR/REC-CSS2/

DaveSW
05-22-2003, 10:43 AM
something like www.w3schools.com ?