Alastair Campbell wrote:
> I'm trying to replicate this seemingly simple CSS for IE:
>
> #mainwrap, #header { width: 58.5em; max-width: 97%; }
You can't. You'll have to reverse it, like this...
#mainwrap, #header { width: 97%; max-width: 58.5em; }
...which will have the same effect - and can b
Hi,
I'm trying to replicate this seemingly simple CSS for IE:
#mainwrap, #header {
width: 58.5em;
max-width: 97%;
}
This makes a layout that expands with the font size but not beyond the window.
There's a full page example here:
http://alastairc.ac/code/blogged_examples/layout_t