Under what conditions should you choose tables instead of DIVs in HTML coding?
|
7
|
|
|
|
|
|
The whole "Tables vs Divs" thing just barely misses the mark. It's not "table" or "div". It's about using a semantic layout. 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. |
||||||||||||||||
|
|
|
|
||||
|
|
|
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. |
||
|
|
|
|
On this subject, I thought this site was pretty funny. |
||
|
|
|
|
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. |
||||
|
|
|
Ideally HTML tables should only be used for tabular data. However tables are also the simplest way to create some specific types of grid-based layouts, which are hard to emulate in cross-bowser compatible CSS. This article describes the issue in more details. The CSS spec does support grid-based layouts equivalent to table markup using the display:table|table-cell property. However this part of the spec is not supported in Internet Explorer (although all other modern browsers support it.) This leaves you with a dilemma: Either use HTML tables for layout - which is bad style because it is presentational markup. Or try to emulate a grid with floats and abolute positioning in CSS. This often turns into convoluted and hard to maintain CSS. If accessibility or semantic purity is important for you, go with pure CSS. If you just want your layout-grid to work without too much hassle, you should probably use a table. |
||
|
|
|
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. |
|||
|
|
|
|
For label : textbox, neither divs nor tables are appropriate: |
||
|
|
|
|
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: New Blog Post Title: Body: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/ |
||
|
|
|
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. |
||
|
|
|
|
@Marius: Is the layout tabular data? No, while it was standard a few years ago it's not now :-)
I tend to give the label a fixed width, or display it on the line above. |
||
|
|
|
|
Just to continue the question: Can you use tables for grid layout? |
||
|
|
|
|
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. |
||
|
|
|
|
If your data can be laid out in a two-dimensional grid, use |
||
|
|
|
I use tables in two cases: 1) Tabular data 2) Any time I want my layout to dynamically size itself to its contents |
||
|
|
|
|
As many posters have already mentioned, you should use tables to display for tabular data. Tables were introduced in HTML 3.2 here is the relevant paragraph from the spec on their usage:
|
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Tables were designed for tabular content, not for layout. So, don't ever feel bad if you use them to display data. |
||
|
|
|
|
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 |
||
|
|
|
|
Usually whenever you're not using the table to provide a layout. Tables -> data Divs -> layout (mainly) |
||
|
|
|
|
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. |
||||||||
|
|
|
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 :) |
||||||||||
|
|
|
I believe just tabular content. For example, if you printed out a database table or spreadsheet-like data to HTML. |
||
|
|
