在表格中,我需要将一列“固定”到位,并使其他列水平滚动。下面是一个可视化示例:
我尝试使用溢出滚动,但它似乎什么也不做:
.horizontal-scrolling {
display: flex;
width: 500px;
overflow: scroll;
}
.horizontal-scrolling th {
width: 250px;
}
<table>
<thead>
<tr>
<th>First</th>
<span class="horizontal-scrolling">
<th>Second</th>
<th>Third</th>
<th>Fourth</th>
</span>
</tr>
<thead>
</table>
神不在的星期二
相关分类