【问题标题】:Table with fixed header, first column and footer + Scroll inside具有固定页眉、第一列和页脚的表格 + 向内滚动
【发布时间】:2018-01-26 22:39:56
【问题描述】:

我必须创建一个包含大量数据的表。因此,需要一些帮助来找到如何使其非常灵活但又不会占用太多空间的解决方案。

我认为它应该像这里的图片所示那样工作:

【问题讨论】:

标签: jquery html css html-table


【解决方案1】:

你可以自己上课:

.block {
  display: block;
  overflow: auto;
}
<table>
  <tr>
    <th>...</th>
    <th>...</th>
  </tr>
  <tr>
    <td>....</td>
    <td class='block'>lot of data</td>
  </tr>
</table>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2011-05-03
    • 1970-01-01
    • 1970-01-01
    • 2018-05-19
    • 1970-01-01
    • 2017-01-20
    • 1970-01-01
    相关资源
    最近更新 更多