I think designing tables with css is not that easy. Is there any article which covers designing of table or any book.
Obligatory question - do you know that tables are only meant for tabular data? Nothing else?
Yes. But I found it difficult to design tables using css, as I am a beginner. So I need to read some articles on tables
Piyush1,
Can you please give us an idea, maybe a drawing, of how you would like to use a table (or CSS table behaviours) on a web page?
http://www.lamborghini.com/en/dealers-service/
On this page there is a table on left hand side with caption “dealers”. They design it with lists. But can we get it by using tables.
Great!
Is it possible? Yes. This is not tabular data though. Do not use tables for this.
Ok. Thank you.
You can use the css display:table and display:table-cell properties to mimic the behaviour of tables (if needed) without incurring any incorrect semantic issues. Of course you wouldn’t use those css properties for tabular data because that’s what html tables are for.
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.