如何使表格可滚动

时间:2012-09-26 08:48:28

标签: html css css-tables

有没有人知道使用html和css使表格的主体可滚动的香草方式?

明显的解决方案

tbody {
    height: 200px;
    overflow-y: scroll;
}

不起作用。

这不是表格的明显用法吗?

我做错了吗?

4 个答案:

答案 0 :(得分:21)

您需要先声明一个高度,否则您的表格会根据其内容进行扩展。

table{
   overflow-y:scroll;
   height:100px;
   display:block;
}

编辑:在澄清你的问题后,我编辑了小提琴: 查看this Examplethat way。这是相当hacky,并没有保证工作crossbrowser,但可能适合你的情况。

答案 1 :(得分:9)

你不能用桌子做到这一点。用div包裹表格,给它类似的东西:

div.wrapper {
    overflow:hidden;
    overflow-y: scroll;
    height: 100px; // change this to desired height
}

答案 2 :(得分:4)

您可以用父项div包裹表格,并根据 scoota269 的建议让其滚动:

.div_before_table {
    overflow:hidden;
    overflow-y: scroll;
    height: 500px;
}

要使表头保持粘性,您可以添加一个fixed类:

.th.fixed {
    top: 0;
    z-index: 2;
    position: sticky;
    background-color: white;
 }

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #ddd;
}


/* The scrollable part */

.scrollable {
  height: 150px;
  overflow-y: scroll;
  border-bottom: 1px solid #ddd;
}

th {
  position: sticky;
  background-color: white;
  z-index: 2;
  top: 0;
}
<div class="scrollable">
  <table>
    <tr>
      <th>Company</th>
      <th>Contact</th>
      <th>Country</th>
    </tr>
    <tr>
      <td>Alfreds Futterkiste</td>
      <td>Maria Anders</td>
      <td>Germany</td>
    </tr>
    <tr>
      <td>Centro comercial Moctezuma</td>
      <td>Francisco Chang</td>
      <td>Mexico</td>
    </tr>
    <tr>
      <td>Centro comercial Moctezuma</td>
      <td>Francisco Chang</td>
      <td>Mexico</td>
    </tr>
    <tr>
      <td>Centro comercial Moctezuma</td>
      <td>Francisco Chang</td>
      <td>Mexico</td>
    </tr>
    <tr>
      <td>Ernst Handel</td>
      <td>Roland Mendel</td>
      <td>Austria</td>
    </tr>
    <tr>
      <td>Island Trading</td>
      <td>Helen Bennett</td>
      <td>UK</td>
    </tr>
    <tr>
      <td>Laughing Bacchus Winecellars</td>
      <td>Yoshi Tannamuri</td>
      <td>Canada</td>
    </tr>
    <tr>
      <td>Magazzini Alimentari Riuniti</td>
      <td>Giovanni Rovelli</td>
      <td>Italy</td>
    </tr>
  </table>
</div>

答案 3 :(得分:1)