table tbody {
max-height: 500px;
display: block;
overflow-y: auto;
}
table thead, table tbody tr {
width: 100%;
display: table;
table-layout: fixed;
}
table thead {
width: calc(100% - 3px); /*减去默认滚动条的宽度,让thead 与tbody 对齐*/
}
table tbody::-webkit-scrollbar { width: 3px;}  /*设置滚动条的宽度,让thead 与tbody 对齐*/

/*改变滚动条的宽度和样式*/
table tbody::-webkit-scrollbar { width: 3px;}
table tbody::-webkit-scrollbar-track{background-color:#f0f0f0;}
table tbody::-webkit-scrollbar-thumb{background-color:#CCCCCC;}
table tbody::-webkit-scrollbar-thumb:hover {background-color:#CCCCCC;}
table tbody::-webkit-scrollbar-thumb:active {background-color:#CCCCCC;}








posted on 2018-06-05 10:12  zeroz  阅读(2474)  评论(0编辑  收藏  举报