Chris Price wrote:
Can anyone tell me why this page doesn't validate as XHTML 1.0 Strict?
http://ubiqutees.co.uk/custom.php
<colgroup> is pinpointed but I'm blowed if I can figure out what's wrong.
You can have either <col> or <colgroup> elements as children of <table>,
but not both. So these are valid:
<table>
<col>
<col>
<tr><td>...<td>...
</table>
<table>
<colgroup>
<col>
<col>
</colgroup>
<tr><td>...<td>...
</table>
But this is not:
<table>
<col>
<colgroup>
<col>
<col>
</colgroup>
<tr><td>...<td>...<td>...
</table>
--
Lachlan Hunt
http://lachy.id.au/
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************