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

css控制tbody滚动,thead固定

作者: __凌 | 来源:发表于2017-11-06 16:02 被阅读0次

    <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;

    }

    相关文章

      网友评论

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

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