首页 > web前端 > css教程 > 正文

如何在可滚动 Div 内创建固定标题表?

Mary-Kate Olsen
发布: 2024-11-17 01:58:03
原创
134 人浏览过

How to Create a Fixed Header Table Inside a Scrollable Div?

如何在可滚动 Div 内创建固定标题表格

要在滚动时固定标题,建议使用两个表格。一个用于标题,保持静态,另一个用于内容单元格,包裹在启用溢出的固定高度 div 中。

HTML:

<div class="wrap">
    <table class="head">
        <thead>
            <tr>
                <th>Head 1</th>
                <th>Head 2</th>
                <th>Head 3</th>
            </tr>
        </thead>
    </table>
    <div class="inner_table">
        <table>
        <tbody>
            <tr>
                <td>Body 1</td>
                <td>Body 2</td>
                <td>Body 3</td>
            </tr>
            <!-- More table rows here -->
        </tbody>
    </table>
    </div>
</div>
登录后复制

CSS:

.wrap {
    width: 352px;
}

.wrap table {
    width: 300px;
    table-layout: fixed;
}

table tr td {
    padding: 5px;
    border: 1px solid #eee;
    width: 100px;
    word-wrap: break-word;
}

table.head tr td {
    background: #eee;
}

.inner_table {
    height: 100px;
    overflow-y: auto;
}
登录后复制

此方法可确保当表格内容为静态标题时滚动,防止内容遮挡重要的列名称。

以上是如何在可滚动 Div 内创建固定标题表?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板