background position bottom code example
Example 1: keep div at the bottom of page
#footer {
position: fixed;
bottom: 0;
width: 100%;
}
Example 2: move css background image
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;