美文网首页
Table加滚动条

Table加滚动条

作者: 令狐达耶 | 来源:发表于2019-09-26 15:40 被阅读0次
    table tbody {
        display:block;
        height:200px;
        overflow-y:scroll;
        overflow-x:hidden; // pc网页需要加上
        -webkit-overflow-scrolling: touch; // 为了滚动顺畅 
    }
     
    table tbody::-webkit-scrollbar {
        display: none; // 隐藏滚动条,pc网页去掉这个
    }
     
    table thead, tbody tr {
        display:table;
        width:100%;
        table-layout:fixed;
    }
     
    table thead {
        width: calc( 100% - 1em )
    }
    table thead th{ background:#ccc;}
    

    相关文章

      网友评论

          本文标题:Table加滚动条

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