Web Hosting Talk







View Full Version : A CSS Question


mark1hos
02-20-2007, 02:39 PM
I need some help on a CSS style.

I am creating a site with a background image at the bottom of the page, however, on monitors with higher resolutions, there is not bottom because it shows the site smaller, but is there any way of saying that whatever the size of the monitor that image is displayed at the bottom?

I hope this makes sense.

andren
02-20-2007, 04:21 PM
What about this:


#bgimg { position: absolute; bottom: 0px; ... }

mark1hos
02-21-2007, 02:59 PM
Tried that it does not work.

fastnoc
02-21-2007, 03:07 PM
That's what I use for mine.

.CLASSNAME{
background:url(PATHTOYOURIMAGE') no-repeat bottom;
}