using css with html tables
Posted: Wed Dec 18, 2002 11:02 am
How do you use the colspan property or what is the likewise property in css?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
|-------|-------|-------|-------|
| cell1 | cell2 | cell3 | cell4 |
|-------|-------|-------|-------|
| cell5 | merged cell | cell6 |
|-------|-------|-------|-------|
| cell7 | cell8 | cell9 | cell0 |
|-------|-------|-------|-------|Code: Select all
<table>
<tr>
<td>cell1</td>
<td>cell2</td>
<td>cell3</td>
<td>cell4</td>
</tr>
<tr>
<td>cell5</td>
<td colspan=2>merged cell</td>
<td>cell6</td>
</tr>
<tr>
<td>cell7</td>
<td>cell8</td>
<td>cell9</td>
<td>cell0</td>
</tr>
</table>