|
Posted by Ben C on January 30, 2007, 3:34 am
Please log in for more thread options
> I was checking out a website offered as an example for another job,
> and I was struck by how clean and professional the site is.
>
> http://www.colorlines.com/
>
> I was poking around, and I noticed that they are still using HTML
> Tables for content. I realize that many sites still use HTML Tables
> for their content, but it is generally discouraged in favor of CSS
> Layers.
>
> This internal debate gave me a headache and caused me to ponder the
> following question...
>
> Is it appropriate to use HTML Tables to format content that is not
> strictly tabular data (with captions and column headers) --- provided
> the content belongs in a tableau format?
>
> Future generations have the right to know. Do you have an opinion?
If you want tabular format but the data is not "intrinsically" a table,
you should use appropriate tags for the data (li, etc.) and format as a
table using display:table, display:table-cell etc. in the stylesheets.
Probably doesn't work in IE, but for future generations IE will be no
more than a distant memory anyway.
|