我有一个带有以下 html 的表格
<div class="wrapper">
<div class="tblWrapper">
<table id="tbl">
<thead>
<tr>
<th class="first">header</th>
<th>header</th>
<th>header</th>...........<th class="last">header n</th>
</tr>
</thead>
<tbody>
<tr><td class="first"></td><td></td><td></td><td class="last"></td></tr>
</tbody>
</table>
</div>
</div>
css
.wrapper{ position: relative; }
.tblWrapper{
width: 98%;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
#tbl{ .first, .last{ position: absolute; } }
}
我想要在这里实现的是第一列和最后一列应该是固定的,其余列必须是可滚动的。
这里的问题是固定列与其他列重叠,其他问题是整个表在父 div 宽度(having max-width: 630px;
)中不固定,它的展开。
任何工作请......