Posted by ami.aga@gmail.com on 01/20/07 05:57
I have the following HTML table.
1st row= 2 cols
2nd row = 1col
3rd row = 3 columns
The first row should spread out across the table with each cell
occupying half of the coumnspan.
The code below does not render the 1st row properly.
help!
<html>
<head>
</head>
<body>
<table border="1">
<tr>
<td colspan="2">
abc
</td>
<td >
bcd
</td>
</tr>
<tr>
<td colspan="3">
cde
</td>
</tr>
<tr>
<td>
def
</td>
<td>
efg
</td>
<td>
fgh
</td>
</tr>
</table>
</body>
</html>
[Back to original message]
|