The content you have there *is* tabular data, so you should not attempt to get rid of the table at all. Otherwise, you'll lose any semantic/structural relationships between the headings and the data cells. Incidentally, you should use TH with appropriate scope for all your headings, e.g.:
<th scope="col">Bronze</th> <th scope="col">Silver</th> ... <th scope="row">Disk space</th> <td>400 MB</td> ... <th scope="row">Bandwidth</th> <td>7 GB</td> Patrick ________________________________ Patrick H. Lauke Webmaster / University of Salford http://www.salford.ac.uk > -----Original Message----- > From: Jad Madi [mailto:[EMAIL PROTECTED] > Sent: 07 June 2004 10:57 > To: [EMAIL PROTECTED] > Subject: [WSG] getting ride of table layout > > > Greetings > I'm trying to replace this table > http://www.easyhttp.com/temp/plans.html > with a table-less layout using only CSS divs no tables > any idea how to do it ? > ***************************************************** > The discussion list for http://webstandardsgroup.org/ > See http://webstandardsgroup.org/mail/guidelines.cfm > for some hints on posting to the list & getting help > ***************************************************** > > ***************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help *****************************************************
