我想設置JQuery Tablesorter中列的寬度。如何減少tablesorter中的列的寬度
我有一個例子http://jsfiddle.net/4mVfu/5647/
我有6列。我試圖調整適合我瀏覽器窗口的寬度,但由於某種原因,我無法調整標題寬度和<body>
標記中的項目大小。
在這個例子中,我希望第一列爲10%,第二列爲10%,第三列爲10%,第四列爲50%,其餘兩列爲10%,每次增加100 %。我試過這個:
.tablesorter td:nth-child(6n+1) {
width: 10%;
}
.tablesorter td:nth-child(6n+2) {
width: 10%;
}
.tablesorter td:nth-child(6n+3) {
width: 10%;
}
.tablesorter td:nth-child(6n+4) {
width: 50%;
}
.tablesorter td:nth-child(6n+5) {
width: 10%;
}
.tablesorter td:nth-child(6n+6) {
width: 10%;
}
任何建議如何做到這一點?
工作對我來說:http://jsfiddle.net/Mottie/4mVfu/5649/,如果你想列可調整大小,則需要添加''resizable''到'widgets'選項,但是你將無法調整列的大小。 – Mottie
順便說一句,如果一個表列中的數據多於指定寬度的數據,表格就會盡可能寬。在@Mottie的小提琴中,這就是窄窗戶中較寬的列所發生的情況。使視口足夠寬,表將服從其CSS。 –