Vous ne pouvez pas mettre tr à l'intérieur de td. Vous pouvez voir le contenu autorisé à partir de Documents Web du MDN documentation sur td
. Les informations pertinentes se trouvent dans le contenu autorisé section.
Une autre façon d'y parvenir est d'utiliser colspan
y rowspan
. Vérifiez ceci violon .
HTML :
<table width="100%">
<tr>
<td>Name 1</td>
<td>Name 2</td>
<td colspan="2">Name 3</td>
<td>Name 4</td>
</tr>
<tr>
<td rowspan="3">ITEM 1</td>
<td rowspan="3">ITEM 2</td>
<td>name1</td>
<td>price1</td>
<td rowspan="3">ITEM 4</td>
</tr>
<tr>
<td>name2</td>
<td>price2</td>
</tr>
<tr>
<td>name3</td>
<td>price3/td>
</tr>
</table>
Et un peu de CSS :
table {
border-collapse: collapse
}
td {
border: 1px solid #000000
}