Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it ok to still use tables? [duplicate]

Tags:

html

Possible Duplicate:
Why not use tables for layout in HTML?

Just wondering, I thought I have read before that it is bad to use tables, so my question is, is it still acceptable to use tables in development?

like image 803
mcbeav Avatar asked Nov 30 '10 06:11

mcbeav


1 Answers

If you're presenting tabular data, it's fine to use tables. If you're doing layout, it's usually easier and lighter to use a few divs (and use a CSS framework like YUI or Blueprint) to do your work.

like image 184
Noufal Ibrahim Avatar answered Oct 07 '22 22:10

Noufal Ibrahim