Jump to content

Grey background outside wrapper?


justlukeyou

Recommended Posts

I have a web page designed very similiar to these: http://www.play.com/Campaign.html?campaign=7505&cid=6732484&campaigntag=Why and http://www.rightmove.co.uk/ however, it only appears to work in compatability view and not in standard view.

 

I have a CSS div which covers the whole screen with a grey background and then a wrapper at 1000px wide with a white background.

 

Can anyone tell me the prefered method of making a page like this?

Link to comment
Share on other sites

Well

 

just set the background of body to gray.

body{
  background:#999;
}

 

than make a wrapper div with a fixed width and center it by using margin.

div#wrapper{
  width:1000px;
  margin:0 auto;  /* IE 5 needs text-align: center * /
  overflow: hidden;
}

 

Now i used overflow hidden there so it will shrink wrap around the inner elements of that container. more info on that trick can be found here.

 

Did this answer your question? If not, be more precise.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.