标签: jquery html css html-table
我必须创建一个包含大量数据的表。因此,需要一些帮助来找到如何使其非常灵活但不填充太多空间的解决方案。
我认为它应该如图所示:
答案 0 :(得分:0)
你可以像你一样上课:
.block { display: block; overflow: auto; }
<table> <tr> <th>...</th> <th>...</th> </tr> <tr> <td>....</td> <td class='block'>lot of data</td> </tr> </table>