Jump to content

w3c validated


Tsachi

Recommended Posts

Your tables have the structure:

<table ...> <td ...>...</td> </table>

However, the specs requre that you define a table row even if there is only one row in the table. So, simply add a tr right after the table, like this:

<table ...> <tr ...><td ...>...</td> </tr></table>

Link to comment
Share on other sites

Your tables have the structure:
<table ...> <td ...>...</td> </table>

However, the specs requre that you define a table row even if there is only one row in the table. So, simply add a tr right after the table, like this:

<table ...> <tr ...><td ...>...</td> </tr></table>

I've tried, but still haven't figured it out. Any help please?
Link to comment
Share on other sites

Make the changes I suggested and then show me what the validator says.Your problematic tables are on line 58 and 85. Add <tr>'s on the next line and </tr> just before the closing </table> tags.

Link to comment
Share on other sites

Make the changes I suggested and then show me what the validator says.Your problematic tables are on line 58 and 85. Add <tr>'s on the next line and </tr> just before the closing </table> tags.
Fixed. It all works now. Many thanks, boen_robot!
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...