Click to See Complete Forum and Search --> : Image at the bottom


Girevik
11-21-2005, 10:22 AM
Another stupid question (will someone warn me when I've used up my quota?): How do I make an image so that it sits at the bottom of a page regardless of how it is sized?

jogol
11-21-2005, 12:13 PM
body {
background: url('pic.gif') no-repeat bottom right; /*or left, center, %, px */
}

or

body {
background: url('pic.gif') no-repeat fixed bottom right; /*or left, center, %, px */
}


check out the difference for yourself..

Girevik
11-21-2005, 12:47 PM
Awsome - thanks!