what is the XHTML code to merge 2 horizontal cells in a table?


I have 3 rows and 4 columns, the first row is all letters and the 2 bottom left horizontal cells need to be merged.

any help?

thanks

try this

<html>
<head></head>
<body>
<table border="1" width="100%">
<tr>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
</tr>
<tr>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
</tr>
<tr>
<td width="25%" colspan="2">1</td>
<td width="25%">1</td>
<td width="25%">1</td>
</tr>
</table>
</body>
</html>

Technorati Tags: , , , , ,