I have this background, css code:
body {
background: #FFF url('images/bg.png') no-repeat bottom center;
margin-bottom: -500px;
width: 100%;
height: 100%;
color:#999;
}
The image has a height of 400 pixels, and I would like it to align at the bottom of the page.
So far this only works in Firefox. In Chrome and IE, the background position is on top, not bottom.
source
share