- css控制tbody滚动,thead固定
- CSS实现table表头固定,tbody滚动
标签的常见问题
- CSS table表格 表头head固定 内容tbody滚动
- html学习之路(四)- 表格标签
- HTML基础(下)笔记
- table
- 2017.9.4
- 精通CSS高级Web标准解决方案读书笔记-07对表单和数据表格应
- 表格操作
<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;
}
网友评论