Quote:
Originally Posted by coder4hire
It looks fine, but the underlying code needs to be reworked, if only to get rid of the table-based layout, which has all kinds of disadvantages. Explore div-based layouts, and you'll never go back to nonsemantic tables.
|
DIV tags are less semantical than TABLE's. That is in fact their purpose, an entirely unsemantical block level element.
Instead you need to look to using appropriate block level elements for certain tasks, either TABLE tags for tables, H1, H2's etc. for headings and P's for paragraphs.