Daniel wrote:
> without a specific width it'll default to 100% or whatever the 
> windows width is (someone could correct me if I'm wrong)

> so something like
> #pagewrapper {
>     width:780px;
>     min-width:780px;
>     max-width:950px;
>     margin: 0 auto inherent; /*not sure about the inherent*/
>     padding: 5px 0 0 5px;
>     border: 2px solid #cd9923;
> }

Won't work as intended in any browser, as they will all lock
#pagewrapper to a fixed 'width' of 780px and the 'min/max-width'
properties will have no effect since 'width' is within their range.

On the other point...
margin: 0 auto;
...is more likely to work.

A working min/max-width solution for IE6 is described here...
<http://www.gunlaug.no/contents/wd_additions_14.html>
...under "pixel-based min/max-width expression".

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to