vote up -9 vote down star

How to make a table like structure (design) with help of div and [CSS][1]? to show tabular data on html page. i don't want to use <table> <tr> <td> .

I work on custom made CMS in my company and for a page cms prdouces xhtml in div tags so xhtml code is not in my hand so therefore i want to show table like data without table.

EDIT:

My question is not about Table vs CSS/div? I'm asking about how to make tabular look with any other way, without table tag.

I found links which are useful for me

http://snook.ca/archives/html%5Fand%5Fcss/getting%5Fyour%5Fdi

http://www.dev-archive.net/articles/table-in-css.html

flag

61% accept rate
1  
google it man, it's too complicated to post in a single answer, and too much has already been written on it – hasen j Oct 26 at 14:55
i think people not getting what i'm asking. i'm going to add more info to question – Jitendra Oct 26 at 14:59
2  
We get what you're asking. You're trying to do it the wrong way. – ceejayoz Oct 26 at 15:04
13  
Tabular data belongs in tables, its what they are for. – blu Oct 26 at 15:06
I’m a Part-time freelace web designer . I make good looking and usable websites with the help of Wordpress and Joomla... NOT – NSD Oct 26 at 16:02

6 Answers

vote up 14 vote down

The first question is: why do you want to do that? It's a bad idea to use tables for page formatting, but if what you want is a table, you should use a table.

link|flag
1  
"Tableless" means he does NOT want to use a table for page formatting. – Moayad Mardini Oct 26 at 14:58
2  
@Moayad He says he wants to make a tableless table, not a tableless layout. – ceejayoz Oct 26 at 15:00
Sorry, my fault, I've made a minor edit in your answer so I can undo my downvote. – Moayad Mardini Oct 26 at 15:13
@ceejayoz and @Moayad Mardini - you both are right i want to give a look of table (tabular data) with help of css and any other xhtml tag . – Jitendra 2 days ago
vote up 12 vote down

The table tag should be used for tables. It has semantic meaning that allows screen readers and search engine crawlers to understand its data.

CSS is for layout. Moving away from table-based layout is the right thing to do. Tables are for tabular data, and moving away from table-based tables is the wrong thing to do.

link|flag
vote up 10 vote down

If you're creating a table of data, why not just use a table? table isn't bad if it's used for what it is meant to represent.

If you really need to do with without using the table tags, here is a suggested approach. Just google for "table using css".

link|flag
Sorry for the minor edit of your answer, but at first I've misunderstood the question and thought your answer is wrong and down-voted it. Made a minor edit in your question to undo that downvote. – Moayad Mardini Oct 26 at 15:03
1  
No problem Moayad, actually right after I answered it I thought that I had answered it wrong too, and had to go back and reread the question to make sure. – Kaleb Brasee Oct 26 at 15:18
vote up 4 vote down

if you want to layout tabular data, use tables and not some weird css. that's what tables are for: tabular data—no need to fake tables using <div>s or something

link|flag
vote up 2 vote down

Is there a reason you want to use CSS for a "table-like-structure"? Is it because you've heard that HTML tables aren't intended for page layout, or is there a particular shortcoming you've encountered.

Before writing off tables as the wrong tool for page layouts consider that when they were introduced with HTML 3.2 they were noted as being used for both data and page layouts. Also be aware that going CSS-only has it's downfalls (as well as benefits) and that when it comes to being pragmattic there isn't an issue with using HTML tables for layout provided that you aren't abusing them (common sense still needs to apply).

I'm not advocating one or the other--but rather just trying to reinforce that either is probably up to the task. Both have benefits and limitations, and picking one or the other based on objective evaluations of those benefits and limitations is the only way to make the right decision.

link|flag
vote up 0 vote down

Why would you not want to use a table to show tabular data? Is it the table structure? To use divs would require way too muck markup. Nesting divs to create tabular divisions would be a lot of css.

If you don't like using tr and td, try a site that will create the markup and just copy/paste.

link|flag

Your Answer

Get an OpenID
or

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