joelwenzel
Programmer
- Jun 28, 2002
- 448
I have a table and I want to write two cells inside of one.
Is it bad coding for me to write
<tr>
<td>
<tr>
<td>cell1</td><td>cell2</td>
</tr><tr>
<td>cell1</td><td>cell2</td>
</tr>
</td>
</tr>
My table is being coded in a mildly complicated sequence which I don't want to get into but this will not give me the desired result
<tr>
<td>cell1</td><td>cell2</td>
</tr><tr>
<td>cell1</td><td>cell2</td>
</tr>
Is it bad coding for me to write
<tr>
<td>
<tr>
<td>cell1</td><td>cell2</td>
</tr><tr>
<td>cell1</td><td>cell2</td>
</tr>
</td>
</tr>
My table is being coded in a mildly complicated sequence which I don't want to get into but this will not give me the desired result
<tr>
<td>cell1</td><td>cell2</td>
</tr><tr>
<td>cell1</td><td>cell2</td>
</tr>