如何对齐我的td宽度相等?

时间:2014-03-12 10:31:17

标签: javascript jquery html css html5

这是我的HTML代码:http://jsfiddle.net/Udxyb/427/

在下面的代码中。在每个列(section1,section2,section3,section4)下,我想要两个相等的列,如果输入数据是lenghty,这些列不应该变化。 相反,两列的宽度必须保持相同而不是增加。它可能???

<table id="main_table" style="width:100%">
    <thead>
        <tr class="firstline">
            <th colspan="2">Column1</th>
            <th colspan="2">Column2</th>
            <th colspan="2">Column3</th>
            <th colspan="2">Column4</th>
        </tr>
    </thead>
    <tbody>
        <tr style="width:1002px; background-color:green; color:white">
            <td  colspan="2" class="flip" style="width:250px;"> Section 1 </td>
              <td  colspan="2" class="flip" style="width:250px;"> Section 1 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 1 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 1 </td>
        </tr>
    </tbody>
    <tbody class="section">
        <tr>
            <td style="width:125px;">item 111sdfgadgrfag</td>
            <td>item 112</td>
            <td>item 113</td>
            <td>item 114</td>
            <td>item 115</td>
            <td>item 116</td>
            <td>item 117</td>
            <td>item 118dfgdfgdfgdfgg</td>
      </tr>
        <tr>
            <td colspan="2">item 121</td>
            <td colspan="2">item 122</td>
            <td colspan="2">item 123</td>
            <td colspan="2">item 124</td>
        </tr>
        <tr>
            <td colspan="2">item 131</td>
            <td colspan="2">item 132</td>
            <td colspan="2">item 133</td>
            <td colspan="2">item 134</td>
        </tr>
    </tbody>
    <tbody>
        <tr style="background-color:green; color:white">
            <td  colspan="2" class="flip" style="width:250px;"> Section 2 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 2 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 2 </td>             <td  colspan="2" class="flip" style="width:250px;"> Section 2 </td>
        </tr>
    </tbody>
    <tbody class="section">
        <tr>
            <td colspan="2">item 211</td>
            <td colspan="2">item 212</td>
            <td colspan="2">item 213</td>
            <td colspan="2">item 214</td>
        </tr>
        <tr>
            <td colspan="2">item 221</td>
            <td colspan="2">item 222</td>
            <td colspan="2">item 223</td>
            <td colspan="2">item 224</td>
        </tr>
        <tr>
            <td colspan="2">item 231</td>
            <td colspan="2">item 232</td>
            <td colspan="2">item 233</td>
            <td colspan="2">item 234</td>
        </tr>
    </tbody>
    <tbody>
        <tr style="background-color:green; color:white">
             <td  colspan="2" class="flip" style="width:250px;"> Section 3 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 3 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 3 </td>
             <td  colspan="2" class="flip" style="width:250px;"> Section 3 </td>
        </tr>
    </tbody>
    <tbody class="section">
        <tr>
            <td colspan="2">item 311</td>
            <td colspan="2">item 312</td>
            <td colspan="2">item 313</td>
            <td colspan="2">item 314</td>
        </tr>
        <tr>
            <td colspan="2">item 321</td>
            <td colspan="2">item 322</td>
            <td colspan="2">item 323</td>
            <td colspan="2">item 324</td>
        </tr>
        <tr>
            <td colspan="2">item 331</td>
            <td colspan="2">item 332</td>
            <td colspan="2">item 333</td>
            <td colspan="2">item 334</td>
        </tr>
    </tbody>
</table>

2 个答案:

答案 0 :(得分:1)

写:

#main_table{table-layout:fixed;}

Updated fiddle here.

答案 1 :(得分:0)

将固定表格布局属性分配给您的表格和自动换行:break-word;对于td&#39;

希望能解决您的问题

<table id="main_table" style="width:100%;table-layout:fixed;">

在css中

td {
    padding: 5px;
    word-wrap:break-word;
}