The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Basically, I want to make the CSS equivalent of a table with 3 columns, that fills the height of the page like a table set at 100% would, and one of the columns is at 100% so it fills as much as it can before the other 2 columns can't squish up anymore. This is my effort thus far:
But that doesn't work quite right, and the results are completely different in IE and firefox. I tried making the positions 'abosolute', giving them a 'z-index' and correct top and left positions, but it still looks naff. Is there any way to do what I want? There should be, it's a basic requirement of a website to be able to do this.
That's what I'm missing out on I think. Cheers for the link Colin.
That's exactly what I want to do.
Also - try not to use positioning. For column layouts, visit BlueRobot. ([URL] http://www.bluerobot.com/web/layouts/ [/URL]).
He has a three column layout... Which is free, by the way....
Also - why width 1?
And - you have one box filing up the entire page. You can't then float around that, as it'll be outside the visible area.
So, change it to... body_left {width:auto;}, body_center{width:100 [or whatever];), body_right {width:230;}.
Yeeeeah. Not sure if that'll work, but you clearly can't have width:100% + two other boxes. But I don't know what look you're trying to achieve, so...
Basically, I want to make the CSS equivalent of a table with 3 columns, that fills the height of the page like a table set at 100% would, and one of the columns is at 100% so it fills as much as it can before the other 2 columns can't squish up anymore. This is my effort thus far:
But that doesn't work quite right, and the results are completely different in IE and firefox. I tried making the positions 'abosolute', giving them a 'z-index' and correct top and left positions, but it still looks naff. Is there any way to do what I want? There should be, it's a basic requirement of a website to be able to do this.