CSS Scroll Bars

liunx

Guest
Hello, I have a division setting its overflow to 'auto', and it places a scroll bar on the contents of the division. However, the page in question has a scroll bar by default. How can I get rid of the default scrollbar?


---------------------------------------------------------

On a side note, unrelated to scroll bars, does anyone know a way to position elements on the bottom of the page, no matter what resolution, and content in between a top and bottom set of navigation bars?Like
<body style="overflow-y:hidden;">
or
<body style="overflow-x:hidden;">
?
_________________________________________
Hmm... If you use absolute positioning, e.g.

position:absolute; left:20px; bottom;0px;

you get the object at the bottom of the screen. However, if your page content is longer than the screen, it will float above part of your page. If you then use a div as you appear to be using now, you can set the width and height of the object not to exceed the height of the screen.

Does that make sense?

dave
 
Back
Top