treehouse : what would you like to learn today?
Web Design Web Development iOS Development

body background moving?

  • What's going on here? When I put a 50 px margin on the top, the body background also moves, leaving an empty gray area.

    http://www.palettedesign.com/

  • @kloy, set the background texture in html element

  • Or body padding instead

  • set background img to "fixed"...

    background: url("library/images/arches.png") repeat fixed 0 0;

  • @kloy, what you're seeing is correct rendering. The top margin on the content 'extends' out of the top of the body (or parent element). There are a number of ways to correct this. 1) Add a 1px padding to the top of body, or 2) Add a 1px border to the top of body, or 3) Add overflow: hidden; to body (changing its block formatting context), or 4) Use 50px top padding on the body and remove the top margin from the content (as Eric stated) 5) Place the background image on an ancestor element, html in this case (as jurotek stated).