Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to have a table on my website. The problem is that this table will have about 400 lines. How can I limit the table's height, and apply scrollbar to it? This is my code:

        <div class="span3">
      <h2>Achievements left</h2>
    <table class="table table-striped">
      <thead>
        <tr>
          <th>#</th>
          <th>Name</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>1</td>
          <td>Something</td>
        </tr>
        <tr>
          <td>2</td>
          <td>Something</td>
        </tr>
        <tr>
          <td>3</td>
          <td>Something</td>
        </tr>
        <tr>
          <td>4</td>
          <td>Something</td>
        </tr>
        <tr>
          <td>5</td>
          <td>Something</td>
        </tr>
        <tr>
          <td>6</td>
          <td>Something</td>
        </tr>
      </tbody>
    </table>

      <p><a class="btn" href="#">View details &raquo;</a></p>
    </div>

I tried to apply max-height and fixed height to table, but it doesn't work.

share|improve this question

3 Answers

up vote 15 down vote accepted

Set the height of the table and set overflow: auto

share|improve this answer
Thank you very much! – pangi May 2 '12 at 19:23
This helps me with a table with too many columns too. – Eduardo Arruda Pimentel May 5 at 22:39
Did this actually work? I tried this and it had no effect at all. – cjstehno May 6 at 21:04
.span3 {  
    height: 100px !important;
    overflow: scroll;
}​

You'll want to wrap it in it's own div or give that span3 an id of it's own so you don't affect your whole layout.

Here's a fiddle: http://jsfiddle.net/zm6rf/

share|improve this answer
Note that the '!important' isn't important ;) – Chords May 2 '12 at 19:21
Thank you, it works! – pangi May 2 '12 at 19:23
3  
Be careful, setting these properties for .span3 will affect all span3 elements across your entire Bootstrap-driven site. – Terry May 2 '12 at 19:27
I only applied it to specific span3. Is it possible to keep the height relative and still have scroll bar next to the table? – pangi May 2 '12 at 19:46
1  
You can only add a height percentage if the parent container has a pixel height. In your case, you'd need to do something like set .row to 500px and .span3 to 50%. If the parent doesn't have a set height the browser just defaults to the content height if you give it a percent. – Chords May 3 '12 at 13:23
show 3 more comments

CSS

.achievements-wrapper { height: 300px; overflow: auto; }

HTML

<div class="span3 achievements-wrapper">
    <h2>Achievements left</h2>
    <table class="table table-striped">
    ...
    </table>
</div>
share|improve this answer
Is it possible to keep the height relative? – pangi May 2 '12 at 19:45
Relative to what? – Terry May 2 '12 at 20:08
I want to have the height set with percents. Is this possible? I couldn't get it to work. – pangi May 3 '12 at 6:06
Sure, just set the table height to 100%. .table-class-name { height: 100%; }. – Terry May 3 '12 at 12:24
That extends my table, and it goes on and on. (It has no effect) – pangi May 3 '12 at 12:47
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.