On 7/5/05, Magenta Placenta <[EMAIL PROTECTED]> wrote:
> Is it possible to have a css declared body background that centers
> regardless of users resolution?  I'm using the below to have a centered
> "shell" which contains the image.  This works fine for the most part (and
> continues to center on higher resolutions) but I get a little bit of scroll
> bars in Firefox.  When I put the image in the body declaration, all is fine,
> but it's not centered, it's flush left on the screen.  I can't seem to get
> the body class declaration background to center regardless of what I do - is
> this even possible?
> 
> body {
>         background:#fff;
>         margin:0px;
>         padding:0px;
>         }
> 
> #shell {
>         background:url(images/home.jpg) no-repeat left top;
>         width:796px;
>         height:609px;
>         margin-left:auto;
>         margin-right:auto;
>         margin-top:0px;
>         margin-bottom:0px;
>         padding:0px;
>         }

How about 

body {
background:url(images/home.gif) no repeat center center #fff;
}

If all you want to center is the image that does the trick.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to