Re: [css-d] IE expression and font sizes

2006-06-14 Thread Gunlaug Sørtun
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

[css-d] IE expression and font sizes

2006-05-17 Thread Alastair Campbell
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