A Scroll bar inside a table??

admin

Administrator
Staff member
Does anyone know the code to make a table scrolling? Using just html? The page im working with doesnt support Javascript, or frames.<!--content-->I don't know about a table, but you can use a fixed-size container with overflow: scroll set. For example:<br />
<br />
<div style="width: 50px; height: 50px; overflow: scroll">This content will scroll if it is larger than the size of the containing div.</div><br />
<br />
You can use 'auto' instead of 'scroll' if you want the scrollbar to appear only when necessary. For more info see <!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS2/visufx.html#propdef-overflow">http://www.w3.org/TR/CSS2/visufx.html#propdef-overflow</a><!-- m --><br />
<br />
Adam<!--content-->Thanks so much that's perfect!<!--content-->Also consider overflow:auto; because this will add the scroll bars only when they are needed and you probably wont have that annoying horizontal scroll bar.<!--content-->
 
Back
Top