HTML Checking for Large Sites
Rocket Validator automatically scans your sites for accessibility issues using the W3C Validator,
hosted on our own servers and integrated into our web crawler.
The “width” attribute on the table (or td) element is obsolete. Use CSS instead.
Both <table>
and <td>
elements no longer accept a width
attribute. Instead, you should use CSS as in this example:
<table style="width:100%;">
<tr>
<td style="width:50px;">Name</td>
</tr>
</table>
Related W3C validator issues
- Bad value X for attribute “width” on element “iframe”: Expected a digit but saw “%” instead.
- Bad value “X%” for attribute “width” on element “img”: Expected a digit but saw “%” instead.
- CSS: “background-image”: Parse Error.
- CSS: “filter”: "X" is not a “filter” value.
- CSS: “padding-top”: “-X” negative values are not allowed.
- CSS: Parse Error.
- CSS: “X”: Parse Error.
- The “align” attribute on the “td” element is obsolete. Use CSS instead.
- The “border” attribute is obsolete. Consider specifying “img { border: 0; }” in CSS instead.
- The “center” element is obsolete. Use CSS instead.
- The element “table” must not appear as a descendant of the “caption” element.
- The “valign” attribute on the “td” element is obsolete. Use CSS instead.
- The “X” attribute on the “Y” element is obsolete. Use CSS instead.