美文网首页
css控制tbody滚动,thead固定

css控制tbody滚动,thead固定

作者: __凌 | 来源:发表于2017-11-06 16:02 被阅读0次
  1. css控制tbody滚动,thead固定
  2. CSS实现table表头固定,tbody滚动
  3. 标签的常见问题
  4. CSS table表格 表头head固定 内容tbody滚动
  5. html学习之路(四)- 表格标签
  6. HTML基础(下)笔记
  7. table
  8. 2017.9.4
  9. 精通CSS高级Web标准解决方案读书笔记-07对表单和数据表格应
  10. 表格操作
  11. <style>

    table{

    border-collapse:collapse;

    }

    table tbody{

      display:block;

      height:195px;

      overflow-y:scroll;

    }

    table thead, tbody tr{

      display:table;

      width:100%;

      table-layout:fixed;

    }

    table thead{  width:calc(100% -1em ) }   //对齐

    table thead th{

      background:#ccc;

    }

    </style>

    border-collapse: collapse;

    }

    相关文章

    标签的常见问题

    border-collapse:collapse; colgroup 顺序问题 thead、tbody、tfoot...

  12. CSS table表格 表头head固定 内容tbody滚动

    核心思想: 首先是给tbody设置 display:block; 把行内变成块元素,然后给 tbody 一个固定...

  13. html学习之路(四)- 表格标签

    table标签 caption标签 col标签 colgroup标签 thead标签 tbody标签 tfoote...

  14. HTML基础(下)笔记

    ctrl+{:左缩进,右同理; table:表格 tr:行 td:列 thead:表头 tbody:...

  15. table

    table 表格 表格分为三个部分 表头(thead) 表体(tbody)表尾(tfoot)...

  16. 2017.9.4

    表格的学习 表格 table thead 表头 (可以忽略) tr 行 th 列 tbody 表体...

  17. 精通CSS高级Web标准解决方案读书笔记-07对表单和数据表格应

    1. 简单的表格样式 表格专有元素caption(标题),thead,tbody,tfooter,col,colg...

  18. 表格操作

    tbody默认存在 tHead :表格头tBodies:表哥正文tFoot:表格尾rows:行cells:列ale...

  19. 网友评论

        本文标题:css控制tbody滚动,thead固定

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