I have a table which has dynamic number of columns depending on data I receive. I have a tag which needs to spread across all columns independent of number of columns in a table.
<table>
<thead>
<tr>
<th><span>ColA</span></th>
<th><span>ColB</span></th>
<th rowspan='2'><span>Col<br/> C</span></th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td>Footer content here</td>
</tr>
</tfoot>
</table>
EDIT colspan = 0 worked for me!
<td colspan='0'>Footer content here</td>
Works on FF, Did not work for Chrome, IE8 though :(
EDIT 2
colspan = '100%' This link solved crossbrowser problem https://stackoverflow.com/a/5028091/405117