I have a background image of original size 1024 x 1024 pixel. How can I center the image on the page? I want to apply the image on the complete body.
body {
background-image:url('images/bg.jpg');
height: 1024px;
background-repeat: no-repeat;
}
I was thinking of giving a left and right margin in pixels, but thought if there is a better way out, that is more exact.