I have a physical image on a page..
<img src="image.png" alt="image-name" />
I want it to behave as if it was the body background image though..
body{
background: url(image.png) no-repeat center top;
}
i.e centered without the browser seeing it, so no scroll bars if its wider the the browser etc?
Is this possible?