background-color:#FFCC80;
background-image:url(/img/eg_bg_desert.jpg);
background-repeat:no-repeat;
background-attachment:fixed;
<script type="text/javascript">
function changePosition()
document.body.style.backgroundPosition="bottom center";
<input type="button" onclick="changePosition()" value="Change background-image position" />
<p><b>Note:</b> For this to work in Mozilla, the background-attachment property must be set to "fixed".</p>