How do I achieve colspan/rowspan behavior in tableless (e.g. div.table {display: table;} div.tr {display: table-row;} etc.) table?
| show 1 more comment |
|
I would imagine that this would be covered by CSS Tables, a specification which, while mentioned on the CSS homepage, appears to currently be at a state of "not yet published in any form" In practical terms, you can't achieve this at present. |
|||||
|
http://www.quackit.com/css/css3/properties/css_column-span.cfm |
|||
|
|
|
Trying to think in tableless design does not mean that you can not use tables :) It is only that you can think of it that tabular data can be presented in a table, and that other elements (mostly div's) are used to create the layout of the page. So I should say that you have to read some information on styling with div-elements, or use this page as a good example page! Good luck ;) |
|||
|
|
|
So basically, you've turned all your What's the point in that? It sounds like someone's told you that you shouldn't be using tables in modern web design, which is sort of right, but not in this way -- what you've done doesn't actually change anything about your code. It certainly hasn't got rid of the table; it's just made it harder to read. The true meaning of the point about not using tables in modern sites is to achieve the page layout you want without using the kind of layout techniques that involve setting out a grid of table cells. This is achieved by using On the other hand, if you are trying to place an actual block of tabular data on the page - for instance a list of items and prices in a shopping basket, or a set of statistics, etc, then a table is still the correct solution. Tables were not removed from HTML, because they are still relevant and still useful. The point is that it is fine to use them, but only in places where you are actually display a table of data. The short answer to your question is I don't think you can -- If your page layout is such that it relies on tables, there really isn't any point doing a half-way house effort to get rid of the table elements without reworking how the layout is done. It doesn't achieve anything. Hope that helps. |
|||||||||
|
|
You could always use CSS to simply adjust the width and the height of those elements that you want to do a
|
|||
|
|
|
|
|||||
|
|
In order to get "colspan" functionality out of div based tabular layout, you need to abandon the use of the display:table | display:row styles. Especially in cases where each data item spans more than one row and you need different sized "cells" in each row. |
|||
|
|
divthat looks like a table is not a table and will never be. For stuff likecolspanandrowspansimply use real table. – Shadow Wizard Jan 20 '11 at 10:48