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

4 Answers

up vote 17 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
2  
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

I recently had a similar problem and ended up fixing it using a mixture of different solutions.

The first and most simple one was to use two tables, one for the headers and one for the body. This works but the headers and the body columns are not aligned. And, since I wanted to use the auto-size that comes with twitter bootstrap tables I ended up creating a Javascript function that changes the headers when: the body is rendered; the windows is resized; the data in the column changes, etc.

Here is some of the code I used:

        <table class="table table-striped table-hover" style="margin-bottom: 0px;">
        <thead>
            <tr>
                <th data-sort="id">Header 1</i></th>
                <th data-sort="guide">Header 2</th>
                <th data-sort="origin">Header 3</th>
                <th data-sort="supplier">Header 4</th>
            </tr>
        </thead>
    </table>
    <div class="bodycontainer scrollable">
        <table class="table table-hover table-striped table-scrollable">
            <tbody id="rows"></tbody>
        </table>
    </div>

The headers and the body are divided in two separate tables. One of them is inside a DIV with the necessary style to generate the vertical scrollbars. Here is the CSS I used:

.bodycontainer {
  //height: 200px
  width: 100%;
  margin: 0;
}

.table-scrollable {
  margin: 0px;
  padding: 0px;
}

I commented the height here because I a wanted the table to reach the bottom of the page, whatever the page height might be.

The data-sort attributes I used in the headers are also used in every td. This way I could get the width and the padding of every td and the width of the row. Using the data-sort attributes I set using CSS the padding and width of each header accordingly and of the header row which is always bigger since it doesn´t have a scrollbar. Here is the function using coffeescript:

fixHeaders: =>
  for header, i in @headers
    tdpadding = parseInt(@$("td[data-sort=#{header}]").css('padding'))
    tdwidth = parseInt(@$("td[data-sort=#{header}]").css('width'))
    @$("th[data-sort=#{header}]").css('padding', tdpadding)
    @$("th[data-sort=#{header}]").css('width', tdwidth)
    if (i+1) == @headers.length
      trwidth = @$("td[data-sort=#{header}]").parent().css('width')
      @$("th[data-sort=#{header}]").parent().parent().parent().css('width', trwidth)
      @$('.bodycontainer').css('height', window.innerHeight - ($('html').outerHeight() -@$('.bodycontainer').outerHeight() ) ) unless @collection.length == 0

Here I assume that you have an array of the headers called @headers.

It is not pretty but it works. Hope it helps someone.

share|improve this answer

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.