Re: Vertical scrollbar within a table? -
09-07-2006
, 09:49 PM
you can make anything scroll with a div set to overflow:auto
this is the style:
#slider{
width:250px;
height:400px;
overflow:auto;
}
then on the page (in the form or where ever you want it:
<div id="slider">
any content you want to scroll...............
this can be form controls, images, etc.
</div>
just change the style's width and height to fit your space.
if you want to see an example i am using this code on my home page. link is
below. |