如何在隐藏其他cols后修复html表格col宽度?

时间:2016-03-21 05:12:44

标签: javascript html css

我有一个包含5列的html表。在设计时,我使用相对宽度%来指定每列的宽度。在运行时,javascript代码隐藏了三列,另外两列变得非常宽。我怎样才能让剩余的两列?宽度没变?但我不想用像素来修正宽度。

谢谢。

4 个答案:

答案 0 :(得分:0)

尝试给css中的每个TD或TH赋予最大宽度20%。

答案 1 :(得分:0)

您可以尝试更改隐藏这些列的方式:如果将它们设置为display:none;(使用js设置的内联样式,或者通过添加/删除类),则可以将其更改为{ {1}} - 这样他们仍会占用空间,但不会显示。

答案 2 :(得分:0)

如果您使用视口宽度vw而不是百分比%,它将起作用。



table {
  border-collapse: collapse;
}
td {
  border: 1px solid;
  width: 20vw;
}


td:nth-child(1),
td:nth-child(2),
td:nth-child(4) {
  display: none;
}

<table>
  <tr>
    <td>Some text hidden</td>
    <td>Some text hidden</td>
    <td>Some text visibile</td>
    <td>Some text hidden</td>
    <td>Some text visibile</td>
  </tr>
</table>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

我发现最好的方法是使用float:left。

td {
    float:left;
}

<table>
  <tr>
    <td>Some text hidden</td>
    <td>Some text hidden</td>
    <td>Some text visibile</td>
    <td>Some text hidden</td>
    <td>Some text visibile</td>
  </tr>
</table>