Quote:
|
Error Line 86 column 40: there is no attribute "background".<td width="224" height="217" background="images/left_column.png"><div align="cen You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element.
|
"background" is presentational and since you've specifed an XHTML doctype, you cannot use it, all presentation must be in the CSS. For XHTML that 'background' is deprecated and therefore not valid for the doctype.
Quote:
|
Error Line 320 column 26: there is no attribute "height".<table width="700" height="265" border="0" cellpadding="0" cellspacing="0" id="a
|
Refer to W3C: http://www.w3schools.com/tags/tag_table.asp
'height" on a table is not valid in HTML either. Tables are meant to stretch with their contents, you can't limit their height.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|