wukele / jpolite

Automatically exported from code.google.com/p/jpolite
0 stars 1 forks source link

"auto" support #2

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Make better support for auto as column width.

for instance:
col1 = 200px
col2 = auto
col3 = 200px

col2 should be browserwidth - 200 - 200

Original issue reported on code.google.com by jonas.ga...@gmail.com on 16 Apr 2009 at 1:54

GoogleCodeExporter commented 9 years ago
Yes, this is possible, with some CSS hacks, i.e.,
c1 => position:abosolute; left:0; width:200px
c3 => position:abosolute; right:0; width:200px
c2 => margin-left:200px; margin-right:200px

Original comment by bwstud...@gmail.com on 6 Jun 2009 at 12:42