table固定表头,tbody滚动条样式设置以及填的几个坑
6Deshun 发布于 6年前 (2019-01-18) 10499℃ 评论(0) 赞 (5)
工作中或许会用到 table 表格固定表头, tbody 滚动的效果。为了方便我这里直接用的 Bootstrap 的表格样式。今天研究了一下,整理了几种方案:有的建议使用:position: absolute 或者 position: fixed; .table&nbs...
Deshun 发布于 6年前 (2019-01-18) 10499℃ 评论(0) 赞 (5)
工作中或许会用到 table 表格固定表头, tbody 滚动的效果。为了方便我这里直接用的 Bootstrap 的表格样式。今天研究了一下,整理了几种方案:有的建议使用:position: absolute 或者 position: fixed; .table&nbs...
Deshun 发布于 6年前 (2019-01-16) 21988℃ 评论(0) 赞 (5)
我们一般设置表格的宽度是用如下方法:可以使固定尺寸,也可以是百分比th,td{ width: 20%; text-align: center; }设置 tab...