-4
巢表,即表下表。我已經嘗試了很多次使用許多屬性,但我沒有得到我想要的。 請告訴我這裏屬性如何做到這一點。由於如何在html中添加嵌套表?
巢表,即表下表。我已經嘗試了很多次使用許多屬性,但我沒有得到我想要的。 請告訴我這裏屬性如何做到這一點。由於如何在html中添加嵌套表?
試試這個:
<table border=1>
<tr>
<td>First cell in first table. The cell to the right has the second table in it.</td>
<td>
<table>
<tr><td>nested table</td></tr>
<tr><td>nested table</td></tr>
</table>
</td>
</tr>
</table>
請向我們提供您已經嘗試了什麼。 – Nhan