How would I accomplish something like this with html/tables?

Nocturnal

Lifer
Jan 8, 2002
18,927
0
76
---------------------- ----------------- ------------------------
| | | | |
| | | | |
| | | | |
| | | | |
| ----------------- | |
| | |
| | |
| | |
| | |
| | |
| | |
----------------------- |-----------------------

Sorry for the ugly ASCII but that's the only way I can draw it up right now. Thanks in advance.
 

igowerf

Diamond Member
Jun 27, 2000
7,697
1
76
Are you trying to make a table where some of the cells are "merged"? You can use the rowspan and colspan attributes to do that.

<table border="1">
<tr>
<td colspan="2">This row spans 2 columns</td>
</tr>
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
</table>