- From: Lachlan Hunt <lachlan.hunt@lachy.id.au>
- Date: Mon, 08 Aug 2005 14:42:11 +1000
- To: Roy <roy@fixya.com>
- CC: www-validator@w3.org
Roy wrote: > What do I gotta do when receiving message "there is no attribute "HEIGHT"" > in a table tag Remove it. > > in which there IS an attribute "HEIGHT": > > <table width="480" height="117" border="0" cellspacing="0" > cellpadding="0"> While there is an erroneous height attribute in your markup, there is no height attribute defined for the table element in the DTD. In fact, you should remove every single attribute you've used there, leaving you with just this: <table> ...and replace them with CSS properties, preferably in an external stylesheet. Additionally, if the table in question is being used as a means to layout and present your document, you should consider removing the table completely and using more semantically correct markup using CSS for *all* layout and presentation. -- Lachlan Hunt http://lachy.id.au/
Received on Monday, 8 August 2005 04:43:18 UTC