-1
帶有600px
寬度的顯示錶有三行。第一排應該有全寬。第二行有兩個td,每個寬度爲50%,第三行爲三個td,長度相等。基本表結構
我迄今所做的:
<table border="1" cellpadding="0" cellspacing="" width="600">
<tr>
<td colspan="3">
<p>Hey I am first row</p>
</td>
</tr>
<tr>
<td colspan="3">
<table border="1" cellpadding="0" cellspacing="" width="600">
<tr>
<td width="50%">
<p>Hey I am second row</p>
</td>
<td width="50%">
<p>Hey I am second row</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="33.33%">
<p>Hey I am third row</p>
</td>
<td width="33.33%">
<p>Hey I am third row</p>
</td>
<td width="33.33%">
<p>Hey I am third row</p>
</td>
</tr>
</table>
那麼你到目前爲止嘗試過什麼? –
你到底在問什麼?你想擺脫嵌套表?然後[編輯]你的問題並指定。 – Xufox