vote up 2 vote down star

Possible Duplicates:
Why not use tables for layout in HTML?
<div> element instead of <table>?

for any HTML conversion.. which is the better way to code.. using "div" tags or using "table".. i normally code using "div" tags and so it has become a sort of convenient for me to juz use and code in "div" .. is there any advantage using "table" tags apart from the fact that it is easier for any new guy to make changes easily if the codes are using "table".. please let me know if i m right...

flag

27% accept rate
5  
Many duplicates. Start here: stackoverflow.com/questions/819237/… – a paid nerd Oct 31 at 6:11
1  
The title can be rephrased to better describe the issue , else too generic. – o.k.w Oct 31 at 6:21

closed as exact duplicate by James Skidmore, John Kugelman, Sinan Ünür, ax, Marc Gravell Oct 31 at 8:34

4 Answers

vote up 8 vote down check

Tables were not created for positioning. They are intended to hold tabular data.

You can reduce the HTML code by the proper use of div tags.

Read this article

Table Layouts vs. Div Layouts

link|flag
+1 for providing resource. – pst Oct 31 at 6:30
vote up 1 vote down

You should use table tags to make tables. You should use div tags to structure your page. It's actually more readable (have you seen an HTML table? it's like, six tags just to make one cell) and more semantically correct.

link|flag
vote up 3 vote down

<div> (which is nearly semantics-free) is definitely going to be better unless the data you're displaying are actually a tabular array of data (rare but not unheard of!-).

link|flag
vote up 1 vote down

Tables were never meant to be used to design a site. As soon as the border="0" was introduced, the true semantics for tables were taken far away from their true purpose -- tables are meant for tabular data.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.