Just found out that this site uses tables for layouts. Does anyone find this disturbing considering the nature of the site? I really don't know what to believe anymore :-)
More eloquent people than I have made some compelling arguments to the contrary. Here's some recent (because that's important when it comes to browser technology) essays to check out:
More eloquent people than I have made some compelling arguments to the contrary. Here's some recent (because that's important when it comes to browser technology) essays to check out:
Tables are good for displaying data that normally fits...in a table. Think a list of Names with associated attributes.
Tables are evil for layout. Layout should be done via CSS.
Separation of data and display is an important concept in all of computer science.
Yeah I would steer clear of it. Tables should be reserved for tabulated data :) Try to layout sites using div's and CSS
I think this page is the most ironic: An introduction to CSS (completely built in tables). It doesn't fill you with much confidence...
It depends on what you are using the table for. And how many tables you are using.
If you are using the table to display tabular data, it is the best. Otherwise, use the modern stuff.
There are times where it is OK to violate purity.