- From: Christoph Päper <christoph.paeper@tu-clausthal.de>
- Date: Sat, 26 Jun 2004 21:57:26 +0200
- To: www-style@w3.org
<ooar123@ntlworld.com>:
> On Fri, 25 Jun 2004 21:47:35 -0700, "Andrew Fedoniouk"
>
>> body { flow: horizontal; height:100%; margin:0 }
>> #left { width: 100px; }
>> #middle { width: 100%% } - will take rest left from #left and #right
>> #right { width: 200px }
>
> I tested the above exactly and it didn't work-
Of course not, because ...
>> 'flow' and %% units are my personal invention - they are non standard.
... Andrew keeps pushing this proposal of his again and again and again ...
The CSS2 solution is:
html {height: 100%; display: table;}
body {display: table-row;)
#left, #middle, #right {display: table-cell;}
#left {width: 100px;}
#right {width: 200px;}
This fulfills all your requirements except:
| serve the columns in what ever order I wish.
Received on Saturday, 26 June 2004 15:57:24 UTC