On Mon, Oct 5, 2009 at 2:01 PM, Nikola Smolenski <[email protected]> wrote: > Not really, since they don't semantically correspond. The assumption with HTML > tables is that each cell is a distinct whole and not a part of the greater > whole. I was thinking of simulating a table using spans: > > <span style="display: table;">
That will fail in IE < 8. I don't see why you couldn't do it with floats: <span style="float:left;clear:both">A</span> <span style="float:right;clear:right">B</span> <span style="float:left;clear:both">C</span> <span style="float:right;clear:right">D</span> _______________________________________________ Wikitech-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikitech-l
