Tables instead of DIVs

HtmlCss

Html Problem Overview


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

Under what conditions should you choose tables instead of DIVs in HTML coding?

Html Solutions


Solution 1 - Html

The whole "Tables vs Divs" thing just barely misses the mark. It's not "table" or "div". It's about using semantic html.

Even the div tag plays only a small part in a well laid out page. Don't overuse it. You shouldn't need that many if you put your html together correctly. Things like lists, field sets, legends, labels, paragraphs, etc can replace much of what a div or span is often used to accomplish. Div should be used primarily when it makes sense to indicate a logical division, and only appropriated for extra layout when absolutely necessary. The same is true for table; use it when you have tabular data, but not otherwise.

Then you have a more semantic page and you don't need quite as many classes defined in your CSS; you can target the tags directly instead. Possibly most importantly, you have a page that will score much better with Google (anecdotally) than the equivalent table or div-heavy page. Most of all it will help you better connect with a portion of your audience.

So if we go back and look at it in terms of table vs div, it's my opinion that we've actually come to the point where div is over-used and table is under-used. Why? Because when you really think about it, there are a lot of things out there that fall into the category of "tabular data" that tend to be overlooked. Answers and comments on this very web page, for example. They consist of multiple records, each with the same set of fields. They're even stored in a sql server table, for crying out loud. This is the exact definition of tabular data. This means an html table tag would absolutely be a good semantic choice to layout something like the posts here on Stack Overflow. The same principle applies to many other things as well. It may not be a good idea to use a table tag to set up a three column layout, but it's certainly just fine to use it for grids and lists... except, of course, when you can actually use the ol or ul (list) tags.

Solution 2 - Html

When the data I am presenting is, indeed, tabular.

I find it ridiculous that some web designers used divs on tabular data on some sites.

One other use I would have for it would be forms, particularly label : textbox pairs. This could technically be done in div boxes, but it's much, much easier to do this in tables, and one can argue that label:textbox pairs are in fact tabular in nature.

Solution 3 - Html

I used to do pure CSS but I abandoned that pursuit in favor of hybrid table/css approach as the most pragmatic approach. Ironically, it's also because of accessibility. Ever try doing CSS on Sidekick? What a nightmare! Ever seen how CSS-based websites are rendered on new browsers? Elements would overlap or just don't display correctly that I had to turn off the CSS. Ever try resizing CSS-based websites? They look awful and often detrimental to the blind if they use zooming features in the browser! If you do that with tables, they scale much better. When people talk about accessibility, I find that many have no clue and it annoys me because I am disabled and they aren't. Have they really worked with the blind? The deaf? If accessibility is a main concern, why the hell are 99% of videos not closed captioned? Many CSS purists use AJAX but fail to realize that AJAX often makes content inaccessible.

Pragmatically, it's ok to use a single table as a main layout as LONG as you provide the information in a logical flow if the cells are stacked (something you'd see on mobiles). The CSS theory sounds great but partially workable in real life with too many hacks, something that is against the ideals of "purity."

Since using the CSS with tables approach, I've saved so much time designing a website and maintanance is much easier. Fewer hacks, more intuitive. I get fewer calls from people saying "I inserted a DIV and now it looks all screwed up!" And even more importantly, absolutely NO accessibility issues.

Solution 4 - Html

Usually whenever you're not using the table to provide a layout.

Tables -> data

Divs -> layout

(mainly)

Solution 5 - Html

Note: At the time the question was asked, there were practical reasons for using tables for some layout purposes. This is not necessary anymore due to browser improvements, so I have updated the answer.

HTML <table>-elements should be used when the data logically has a two dimensional structure. If the data can be structured in rows and columns and you can meaningfully apply headers to both rows and columns, then you probably have tabular data.

I you only have a single row or single column of data, then it is not tabular data - it is just linear content. You need at least two rows and two columns before it can be considered tabular data.

Some examples:

Using tables for placing sidebars and page headers/footers. This is not tabular data but page layout. Something like css grid or flexbox is more appropriate.

Using tables for newspaper-style columns. This is not tabular data - you would still read it linearly. Something like css columns is more appropriate.

Solution 6 - Html

I would make a distinction between HTML for public websites (tables no-no-no, divs yes-yes-yes) and HTML for semi-public or private web applications, where I tend to prefer tables even for page layout.

Most of the respectable reasons why "Tables are bad" are usually an issue only for public websites, but not so much of a problem with webapps. If I can get the same layout and have a more consistent look across browsers by using a TABLE than a complicated CSS+DIV, then I usually go ahead and aprove the TABLE.

Solution 7 - Html

As many posters have already mentioned, you should use tables to display for tabular data.

Tables were introduced in http://www.w3.org/TR/REC-html32.html#body">HTML 3.2 here is the relevant paragraph from the spec on their usage:

> [tables] can be used to markup tabular material or for layout purposes...

Solution 8 - Html

Agree with Thomas -- the general rule of thumb is if it makes sense on a spreedsheet, you can use a table. Otherwise not.

Just don't use tables as your layout for the page, that's the main problem people have with them.

Solution 9 - Html

I can see the argument for tables for forms, but there is a nicer alternative... you just have to roll up your sleeves and learn CSS.

for example:

<fieldset>
  <legend>New Blog Post</legend>
  
  <label for="title">Title:</label>
  <input type="text" name="title" />

  <label for="body">Body:</label>
  <textarea name="body" rows="6" cols="40">
  </textarea>
</fieldset>

You can take that html and layout the form either side-by-side labels, or labels on top of the textboxes (which is easier). Having the flexibility really helps. It's also less HTML than the table equivalent of either.

For some excellent examples of CSS forms, check out these excellent examples:

http://jeffhowden.com/code/css/forms/

http://www.sitepoint.com/article/fancy-form-design-css/

http://www.smashingmagazine.com/2006/11/11/css-based-forms-modern-solutions/

Solution 10 - Html

I will usually opt for tables to display form-type information (First Name, Last Name, Address, etc.) where lining labels and fields across multiple rows is important. DIVs I use for layout.

Of course the table is wrapped in a DIV :)

Solution 11 - Html

Tables were designed for tabular content, not for layout.

So, don't ever feel bad if you use them to display data.

Solution 12 - Html

I use tables in two cases:

  1. Tabular data

  2. Any time I want my layout to dynamically size itself to its contents

Solution 13 - Html

If your data can be laid out in a two-dimensional grid, use <table>. If it can't, don't. Using <table> for anything else is a hack (though frequently not one with proper alternatives, especially when it comes to compatibility with older browsers). Not using <table> for something that clearly should be one is equally bad. <div> and <span> aren't for everything; in fact, being completely meaningless on a semantic level, they are to be avoided at all costs in favor of more semantic alternatives.

Solution 14 - Html

On this subject, I thought this site was pretty funny.

Solution 15 - Html

  1. For displaying tabular data. A calendar is one example of tabular data that isn't always obvious at first.

  2. I work for a medical billing company, and nearly all of the layout for our internal work is done using CSS. However, from time to time we get paper forms from insurance companies that our billers have to use, and a program will convert them to an html format that they can fill out and print via the intranet. To make sure the forms are accepted they need to match the original paper version very closely. For these it's just simple to fall back to tables.

Solution 16 - Html

Tables are used for tabular data. If it makes sense to put it in a spreadsheet then use a table. Otherwise there is a better tag for you to be using such as div, span, ul, etc.

Solution 17 - Html

I believe just tabular content. For example, if you printed out a database table or spreadsheet-like data to HTML.

Solution 18 - Html

If you would like to have semantically correct HTML, then you should use tables only for tabular data.

Otherwise you use tables for everything you want, but there probably is a way to do the same thing using divs and CSS.

Solution 19 - Html

@Marius:

Is the layout tabular data? No, while it was standard a few years ago it's not now :-)

> One other use I would have for it would be forms, particularly label : textbox pairs. This could technically be done in div boxes, but it's much, much easier to do this in tables, and one can argue that label:textbox pairs are in fact tabular in nature.

I tend to give the label a fixed width, or display it on the line above.

Solution 20 - Html

@Jon Limjap

For label : textbox, neither divs nor tables are appropriate: <dl>s are

Solution 21 - Html

> One other use I would have for it > would be forms, particularly label : > textbox pairs. This could technically > be done in div boxes, but it's much, > much easier to do this in tables, and > one can argue that label:textbox pairs > are in fact tabular in nature.

I see that a fair amount, especially among MS developers. And I've done it a fair amount in the past. It works, but it ignores some accessibility and best-practice factors. You should use labels, inputs, fieldsets, legends, and CSS to layout your forms. Why? Because that's what they are for, it's more efficient, and I think accessibility is important. But that's just my personal preference. I think everyone should try it that way first before condemning it. It's quick, easy, and clean.

Solution 22 - Html

When ever a page containg tables is loaded by any browser it takes more time for the browser to render properly the

tag. Where as if the div is used ,the browser takes less time as it is lighter. And more over we can apply the css to make the divs appear as table,

The tables are normally heavy wieght and div are light weight.

Solution 23 - Html

Divs are simple divisions, they are mean't to be used to group sections of the page that are in a semantic sense linked. They carry no implicit meaning other than that.

Tables were originally intended to display scientific data, such as lab results on screen. Dave Raggett certainly didn't intend them to become used to implement layout.

I find it keeps it fairly clear in your mind if you remember the above, if its something you would normally expect to read in a table, then that's the appropriate tag, if its pure layout, then use something else to accomplish your needs.

Solution 24 - Html

It is clear that the DIV are used for Layout but It happened to me to being "forced" to use spreadsheets to do a grid layout within a div structure for this reasons:

> the addition of percentage values did not allow a proper alignment with the div, while the same values expressed on cells of tables gave the expected result.

So I think that tables are still useful not only for data, but also for the situation above, on top of that, tables are still W3C compliant browser and alternative browsers (for the disabled for example) interpret theirs correctly.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKrishna KumarView Question on Stackoverflow
Solution 1 - HtmlJoel CoehoornView Answer on Stackoverflow
Solution 2 - HtmlJon LimjapView Answer on Stackoverflow
Solution 3 - HtmlnetroxView Answer on Stackoverflow
Solution 4 - HtmlJorge CórdobaView Answer on Stackoverflow
Solution 5 - HtmlJacquesBView Answer on Stackoverflow
Solution 6 - HtmlRadu094View Answer on Stackoverflow
Solution 7 - HtmlPatView Answer on Stackoverflow
Solution 8 - HtmlPJ.View Answer on Stackoverflow
Solution 9 - HtmlBen ScheirmanView Answer on Stackoverflow
Solution 10 - Htmluser1921View Answer on Stackoverflow
Solution 11 - HtmlFlySwatView Answer on Stackoverflow
Solution 12 - Html17 of 26View Answer on Stackoverflow
Solution 13 - HtmlSören KuklauView Answer on Stackoverflow
Solution 14 - HtmlcodemonkeyView Answer on Stackoverflow
Solution 15 - HtmlJoel CoehoornView Answer on Stackoverflow
Solution 16 - HtmlMatthew M. OsbornView Answer on Stackoverflow
Solution 17 - HtmlThomas OwensView Answer on Stackoverflow
Solution 18 - HtmlPeter StuifzandView Answer on Stackoverflow
Solution 19 - HtmlRossView Answer on Stackoverflow
Solution 20 - HtmlSlartibartfastView Answer on Stackoverflow
Solution 21 - HtmlCarmineSantiniView Answer on Stackoverflow
Solution 22 - HtmlBiranchiView Answer on Stackoverflow
Solution 23 - HtmlGuy WView Answer on Stackoverflow
Solution 24 - HtmlAmirouche DoudaView Answer on Stackoverflow