
Originally Posted by
wishiwasageek
#fullpage { max-width: 50em; }
which I then call in the HTML for eg. as
<body id="fullpage">
Using the body element itself as the selector would have been better:
Code:
body {
max-width: 50em;
}
Which works wonderfully in Mozilla but NOT in IE (of course)
Microsoft's implementation of CSS is poor, and it doesn't seem as though they are very committed to improving it. Certainly not to the extent of Mozilla's and Opera's efforts. However, you can emulate max-width, as long as you invoke Standards mode by including a complete DOCTYPE.
Mike
Bookmarks