On Sat, 13 Aug 2005 16:59:01 +0100, Jorge Laranjo wrote:
> I want to make a table so that the first row will be a HEADER with 3 cells.
This:
<table>
<thead>
<tr>
<th>ID</th><th>Var 1</th><th>Var 2</th>
</tr>
</thead>
<tr>
<td>ID VALUE</td>
<td>Var 1 value</td>
<td>Var 2 value</td>
</tr>
</table>
should give you what you want, and validate (Havent checked it)
The thead tag is the key -
http://www.w3schools.com/tags/tag_thead.asp
HIH
Lea
--
Lea de Groot
Elysian Systems - http://elysiansystems.com/
Brisbane, Australia
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************