2
고정 헤더가있는 부트 스트랩 테이블이 있습니다. 잘 작동합니다.부트 스트랩 테이블 고정 헤더 콜 스팬이 작동하지 않습니다.
테이블에 colspan
을 추가 할 때. 표가 축소됩니다.
fixed header
및 테이블
colspan
감사가 달성하는 것입니다
DEMO :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;
}
출력 : 위해