【发布时间】:2017-06-06 06:11:09
【问题描述】:
我有一个带有固定标题的引导表。它工作正常。
当我在表中添加colspan 时。表被折叠。
有没有其他可能同时实现fixed header和表colspan
提前致谢
演示: FIDDLE
CSS
.table-fixed thead {
width: 97%;
}
.table-fixed tbody {
height: 230px;
overflow-y: auto;
width: 100%;
}
.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
display: block;
}
.table-fixed tbody td, .table-fixed thead > tr> th {
float: left;
border-bottom-width: 0;
}
输出:
【问题讨论】:
标签: css twitter-bootstrap html-table fixed-header-tables