i don't understand exactly what are you trying to do..
but fix this thing:
Code:
<table><tr>
<caption align="top">
where do the colgroup and cols go
</caption>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</table>
unless you need this:
Code:
<html>
<head>
<style type="text/css">
.red {color:red;}
.blue {color:blue;}
.green {color:green;}
</style>
</head>
<body>
<table><tr>
<caption align="top" class="red">
where do the colgroup and cols go
</caption>
</tr>
<tr class="blue">
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr class="green">
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</table>
</body>
</html>
Bookmarks