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 colspan='2'> </td>
</tr>
<tr>
<td></td><td></td>
</tr>
</table>
gives
|-------|
| C | C |
|-------|
| | |
|-------|
is this even possible what i want Above?