首先TH忽略html表中的resize列

时间:2016-02-22 11:34:33

标签: html css html-table

是否可以忽略调整大小列?

查看示例图片:

http://prntscr.com/a6h88u

我想从表A中制作表B.

但我不知道如何。

表格代码:

<table cellspacing='0' style="margin-left:auto;margin-right:auto">
                <tr>
                    <th>aaaaaaaaaaaaaaaaaaaaaa</th>
                </tr>
                <tr>
                    <th></th>
                    <th><img src="stuff/img/ro/0.png" ></th>
                    <th><img src="stuff/img/ro/1.png"></th>
                    <th><img src="stuff/img/ro/2.png"></th>
                    <th><img src="stuff/img/ro/3.png"></th>
                    <th><img src="stuff/img/ro/4.png"></th>
                    <th><img src="stuff/img//ro/5.png"></th>
                    <th><img src="stuff/img/ro/6.png"></th>
                    <th><img src="stuff/img/ro/7.png"></th>
                    <th><img src="stuff/img/ro/8.png"></th>
                    <th><img src="stuff/img/ro/9.png"></th>
                    <th><img src="stuff/img/hero.png"></th>
                </tr>

                <tr class="rowArrival">
                    <td><img src="stuff/img/tableLog_1.png"></td>
                    <td><span class="valueZero">0</span></td>
                    <td>0</td>
                    <td>111</td>
                    <td>0</td>
                    <td>1</td>
                    <td>1</td>
                    <td>0</td>
                    <td>0</td>
                    <td>1</td>
                    <td>0</td>
                    <td>1</td>
                </tr> 
                <tr class="rowDie">
                    <td><img src="stuff/img/tableLog_2.png"></td>
                    <td>0</td>
                    <td>0</td>
                    <td>1</td>
                    <td>0</td>
                    <td>1</td>
                    <td>1</td>
                    <td>0</td>
                    <td>0</td>
                    <td>1</td>
                    <td>0</td>
                    <td>1</td>
                </tr> 
                <tr class="row_2 rowSum">
                    <td><img src="stuff/img/tableLog_3.png"></td>
                    <td>0</td>
                    <td>0</td>
                    <td>1</td>
                    <td>0</td>
                    <td>1</td>
                    <td>1</td>
                    <td>0</td>
                    <td>0</td>
                    <td>1</td>
                    <td>0</td>
                    <td>1</td>
                </tr> 
            </table>

我尝试设置column width但是,它无效。

1 个答案:

答案 0 :(得分:1)

你可以试试这个。

<th colspan="12">aaaaaaaaaaaaaaaaaa</th>

这里12是表格中的列数。

注意:根据您的要求,它可能少于总列数。