HTML: how can you creat a row/collspan like this? (example included for clearity)
Posted
by matthy
on Stack Overflow
See other posts from Stack Overflow
or by matthy
Published on 2010-04-18T00:29:39Z
Indexed on
2010/04/18
0:33 UTC
Read the original article
Hit count: 491
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?
© Stack Overflow or respective owner