Add scrollbar to a Table





13
Date Submitted Fri. Aug. 4th, 2006 9:46 AM
Revision 1 of 1
Syntax Master sundaramkumar
Tags CSS | HTML
Comments 3 comments
Using styles we can add scrollbars for large table where the space is a constraint


<div style="overflow:scroll;height:80px;width:100%;overflow:auto">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
  <tr>
    <td>test</td>
  </tr>
  <tr>
    <td>test</td>
  </tr>
  <tr>
    <td>test</td>
  </tr>
  <tr>
    <td>test</td>
  </tr>
  <tr>
    <td>test</td>
  </tr>
  <tr>
    <td>test</td>
  </tr>
</table>        
</div>

 

Comments

Comments Fix for Firefox
Mon. Sep. 4th, 2006 3:46 PM    Helper snowdonkey
Comments overflow:scroll
Tue. May. 29th, 2007 4:07 AM    Helper morad
Comments Re: Add scrollbar...
Sat. Oct. 14th, 2006 12:52 AM    Beginner Spugster

Voting