css--让table出现滚动条
表头多⼀个th并设置宽度(17px),让其对齐滚动条,设置css样式让其表格对齐。(表格样式引⽤了layui,也可⾃⼰设置)完整代码如下:
//html
<div class="flows">
<table class="layui-table" lay-filter="param">
<thead>
css表格样式<tr>
<th>参数名称</th>
<th>参数关键字</th>
<th>默认值</th>
<th>参数类型</th>
<th ></th>
</tr>
</thead>
<tbody>
<tr>
<td>参数名称</td>
<td>参数名称</td>
<td>参数名称</td>
<td>参数名称</td>
</tr>
</tbody>
</table>
</div>
//css
.flows table { border: 1px solid #CCCCCC}
.flows table thead,
.flows tbody tr {
display: table;
width: calc( 100% - 1px);
table-layout: fixed;
}
.flows tbody {
display: block;
overflow-y: scroll;
height: 150px;
}
.layui-table th,
.layui-table td {
padding: 9px 0px;
text-align: center;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。