Hello,
I always validate the output of my CGI scripts against the DTDs to
make sure I'm producing clean pages. However I notice that there are
a class of errors that are outside the scope of DTD validation, namely
table geometry problems.
Examples:
* I put a
td rowspan="2" ...
in one row but forget to skip the appropriate column in the next row.
* I put in width attributes on the tds to help a big table render
quickly, but my widths add up to more than 100%.
These lead to unexpected and broken output in many browsers.
Are there any batch tools to check these kind of problems? Are there
any debug modes of common browsers that report when the table appears
to be broken?
I'd be grateful for any pointers!
-James
I always validate the output of my CGI scripts against the DTDs to
make sure I'm producing clean pages. However I notice that there are
a class of errors that are outside the scope of DTD validation, namely
table geometry problems.
Examples:
* I put a
td rowspan="2" ...
in one row but forget to skip the appropriate column in the next row.
* I put in width attributes on the tds to help a big table render
quickly, but my widths add up to more than 100%.
These lead to unexpected and broken output in many browsers.
Are there any batch tools to check these kind of problems? Are there
any debug modes of common browsers that report when the table appears
to be broken?
I'd be grateful for any pointers!
-James
Comment