300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > thead 固定 tbody 超出滚动条

thead 固定 tbody 超出滚动条

时间:2024-07-09 01:02:42

相关推荐

thead 固定 tbody 超出滚动条

参考:博客园 zeroz

/zerozq/p/9138320.html

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

效果:

使用前:

使用后:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。