我想添加表滾動的表體,但我不能得到標題排列與列。修復CSS表溢出和樣式化滾動條[與JS斌]
我也想將滾動條放置在表格中而不覆蓋單元格中的任何文本。
期待在工作中看到一些天才。我正在靠牆敲打我的頭。
下面的代碼:JSBin
CSS
tr {
width: 100%;
height:20px;
//table-layout: fixed;
}
table {
height: 220px;
white-space: nowrap;
border-collapse: collapse;
}
tbody {
overflow-y: scroll;
height: 200px;
width: 100%;
position: absolute;
}
th, td {
border: solid 1px #ccc;
padding: 2px;
}
我想在裏面滾動條固定頭。我已經找出了一些修補其他代碼的東西。雖然小錯誤。 –