HTML: how can you creat a row/collspan like this? (example included for clearity)
- by matthy
i want a specific sort of coll span like this C stands for Row/Coll-spanned
|-------|
|   | C |
|-------|
| C | C |
|-------|
for more clarity this is the code of a simple coll-span and image
<table>
<tr>
<td collspan='2'> </td>
</tr> 
<tr>
 <td></td><td></td>
</tr> 
</table>
gives
|-------|
| C | C | 
|-------|
|   |   | 
|-------|
is this even possible what i want Above?