- From: Andrew Fedoniouk <news@terrainformatica.com>
- Date: Fri, 1 Oct 2004 19:35:06 -0700
- To: "Robin Berjon" <robin.berjon@expway.fr>, "Brian Sexton" <discussion-w3c@ididnotoptin.com>
- Cc: "www style" <www-style@w3.org>
| >> Make (1) display: table-row, and (2) and (3) display: table-cell, with | >> the | >> element containing all three (possibly the <body>) display: table with | >> width: 100%. | > | > So using tables for layout of non-tabular content via HTML is a no-no, | > but using "display: table", "display: table-row", and "display: | > table-cell" for such content is okay? | The best way would be to use hypothetical "flow" attribute. The flow controls visual order of contained block elements and having values : top-to-bottom(default), bottom-to-top, left-to-right, right-to-left So --------------------- | (1) Header | --------------------- | (2) Content | (3) | | | S | | | i | | | d | | | e | | | b | | | a | | | r | --------------------- whould be just <div id="header"> <div id="body" style="flow:right-to-left"> <div id="sidebar"> <div id="content"> </div> </div> "Does anybody know where I can by Occam's Razor?" Andrew Fedoniouk. http://terrainformatica.com
Received on Saturday, 2 October 2004 02:36:12 UTC