互联网技术 · 2024年2月9日 0

HTML中使用固定头部的表格,可以实现tbody的上下左右滑动

这篇文章主要介绍了html中table固定头部表格tbody可上下左右滑动,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

当表格头部固定时,需要分为两个表格来做:一部分是thead,一部分是tbody,具体实现方式如下:

html代码:

<div class=”table_box_big”>
<div class=”table_box”>
    <table>
        <thead>
        <tr>
            <th><div>标题一</div></th>
            <th><div>标题二</div></th>
            <th><div>标题三</div></th>
            <th><div>标题标题标题标题标题标题标题标题标题四</div></th>
            <th><div>标题标题标题标题标题标题标题标题标题五</div></th>
            <th><div>标题标题标题标题标题标题标题标题标题六</div></th>
        </tr>
        </thead>
    </table>
    <div class=”table_tbody_box”>
        <table>
         &nbsp