以下に示すようなHTMLテーブルがあります。7つの列があります。jQueryを使用してテーブルのセル幅を調整しています。jQueryの合計パーセンテージは100です。ただし、テーブルは完全なスペースを使用していません。未使用のスペースがあります。これを修正する方法は?
http://jsfiddle.net/Lijo/eFS5J/3/
$(document).ready(function () {
$('#gridDiv').css('width', '630px');
//Set width of table cells
var numberOfColumns = 7;
$('.resultGridTable th, .resultGridTable td').each(function (i) {
$(this).css('background-color', (['Purple', 'Orange', 'Purple', 'Orange', 'Purple', 'Orange', 'Purple'][i % 7]));
if (i % numberOfColumns == 0) {
$(this).css('width', '15%');
}
if (i % numberOfColumns == 1) {
$(this).css('width', '15%');
}
if (i % numberOfColumns == 2) {
$(this).css('width', '15%');
}
if (i % numberOfColumns == 3) {
$(this).css('width', '15%');
}
if (i % numberOfColumns == 4) {
$(this).css('width', '10%');
}
if (i % numberOfColumns == 5) {
$(this).css('width', '15%');
}
if (i % numberOfColumns == 6) {
$(this).css('width', '15%');
}
}
);
}
);