table-layout:固定的css在给定的列宽度下无法正常工作

时间:2016-07-25 15:15:15

标签: javascript html css

这是我的表结构

<table id="recordingsTable" style="width:900px" class="tablesorter fixed_table">
</table>

CSS:

.fixed_table{
  table-layout: fixed;
}

从js填充表格:

str = ''
str += '<thead>'
str += '<tr>' +
    '<th style="width:150px;text-align:left !important;border-left:0;">Col 1</th>' +
    '<th style="width:150px;text-align:center !important">Col 2</th>' +
    '<th style="width:300px;text-align: center !important;">Col 3</th>' +
    '<th style="width:100px;text-align: center !important;">Col 4</th>' +
    '<th style="width:100px;text-align: center !important;">Col 5</th>' +
    '<th style="width:100px;text-align: center !important;">Col 6</th>' +
    '</tr>' +
    '</thead><tbody style="border-bottom: 1px solid #dddddd;">';


    for(i=0; i < recording_object.length; i++) {
        str += '<tr>';
        str += '<td style="text-align:left !important; padding-left:8px;border-left:0;">'
        str += recording_object[i].text
        str += '</td>' 
        str += '<td class="s3_file_path">' + recording_object[i].path + '</td>'
        str += '<td class="s3_file_name" style="font-size:11px;">' + recording_object[i].file_name + '</td>'
        str += '<td>' + recording_object[i].number + '</td>'
        str += '<td>';
        str += '<button id="' + recording_object[i].id + '" onclick="dup_dialog(this)" type="button" data-toggle="modal" ' +
            'data-target="#upload-all-modal" disabled="disabled" class="btn btn-primary btn-xs">Duplicate</button>' +
            '</td>'
        str += "<td>";
        str += '<button id="' + recording_object[i].id + '" class="btn btn-primary btn-xs" data-toggle="modal" ' +
            'disabled="disabled" data-target="#association">Association</button>'
        str += '</td></tr>'
    }
    str += '</tbody>'

但它没有显示js中定义的表格列的宽度,当我更改任何列宽时,它在视图中不会改变;即使我通过检查元素来改变它

表格布局似乎无法正常工作,因为它应该将每个列宽分配给定。有人可以帮忙吗?

这是表截图: enter image description here

1 个答案:

答案 0 :(得分:0)

我所看到的只是thead的一个问题。你忘记打开它。我放了一些随机数据。我也删除了你单元格中的填充。宽度正如你在javascript中指定的那样。检查小提琴。

https://jsfiddle.net/ks3mj4ec/4/