|
Posted by mbstevens on 08/18/06 13:50
On Fri, 18 Aug 2006 13:41:26 +0100, Deryck wrote:
> I'm trying to implement a CSS solution. The
> site has 3 columns (200px, 400px, 200px) centred in the middle of the
> screen regardless of screen size. I cannot find a CSS 3 column
> equivalent of this. The usual solutions have the 2 200px columns
> positioned absolutely and the centre column expands to fill all of the
> remaining space. While this has advantages it does not match the
> original site's appearance.
That is because any good template author would reject the idea
of all three columns being a fixed width. If you find a template
that matches your specs, it is probably something you should
avoid.
If you insist on making a bad page, however, you can modify one of the
templates you describe so that it has a fixed width center of 400px.
#centerdiv {
...
...
...
width:400px;
...
...
}
[Back to original message]
|