美文网首页
自定义table 表头固定

自定义table 表头固定

作者: Gifted_ | 来源:发表于2022-06-14 13:56 被阅读0次

通过css3新属性position:sticky实现表头固定内容滚动(表格外用div包裹给div一个高度)

html
    <table class="custom_table">
        <thead>
          <tr>
            <th>类型</th>
            <th>类型</th>
            <th>类型</th>
            <th>类型</th>
          </tr>
        </thead>
        <tbody>
          <template v-for="item in tableData">
            <tr @click="show(item)">
              <td>{{ item.type }}</td>
              <td>{{ item.type }}</td>
              <td>{{ item.type }}</td>
              <td>{{ item.type }}</td>
            </tr>
          </template>
        </tbody>
      </table>
css
  .custom_table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative;

    thead tr th {
      background: #639ee1;
      position: sticky;
      top: 0px;
      z-index: 2;
      color: #fff;
      border: none;
    }

    tbody tr {
      &:nth-of-type(odd) {
        background-color: #fff;
      }

      &:nth-of-type(even) {
        background-color: #f6f8fa;
      }
    }

    tr th,
    tr td {
      min-width: 60px;
      text-align: center;
      padding: 12px 6px;
      font-size: 14px;
      font-weight: normal;
      border: 1px solid #ddd;
      box-sizing: border-box;
    }
  }

相关文章

  • 自定义table 表头固定

    通过css3新属性position:sticky实现表头固定内容滚动(表格外用div包裹给div一个高度) htm...

  • table表头固定

    //jsp <%@ page language="java" import="java.util.*" pageE...

  • TABLE表头固定问题

    由于表格内容td是动态生成的,宽度不固定,所以通过定位的方式来实现表头固定会使表头脱离文档流,跟td内容不对齐,通...

  • jquery固定table表头

    在我们日常 大前端开发中,查看报表的时候,表格内容过长,这时候就可能会有需求:固定表头查看内容。 下面是解决办法 ...

  • ElementUI中table表格自定义表头Tooltip文字提

    table-header-tips 应用 element 中的 table 组件,自定义表头 Tooltip 文字...

  • element-ui 中el-table-column的rend

    el-table中有时候需要自定义表头,如何使用通过render-header来设置表头, 下面是在表头自定义el...

  • 自定义Table固定列和表头

    一、实现思路:表格数据中存在合并单元格,网上找了好多列子都没有实现。最后是把一个table拆分为两个table实现...

  • table固定表头和列

    表格固定表头和列 背景 在项目中大多数的表格,都是使用ui库提供的表格,ui库提供的表格为我们封装了很多很实用的功...

  • 造轮子遇到的的技术难题

    table 做固定表头的技术难题 尝试用css解决,overflow: auto会使整个table滚动,考虑加在t...

  • ElementUi开发问题记录

    Table 表格固定表头却无法自适应高度 Message 消息提示--渲染页面后消失

网友评论

      本文标题:自定义table 表头固定

      本文链接:https://www.haomeiwen.com/subject/xjdzmrtx.html