Repeating Image
I'm making a site where I need to have a repeating image running across the bottom of the screen, like on this site,
I don't want it to be just a huge picture though. Is there a way to do this without tables, I tried that but it leaves white space on the border. Is there a way to do it with CSS on the body tag?
Thanks,
Anthony
kazimmerman posted this at 00:15 — 12th October 2005.
He has: 698 posts
Joined: Jul 2005
Yep, just insert this into your CSS file.
body {
background-image: url("path/to/image");
background-repeat: repeat-x;
background-position: bottom;
}
Kurtis
s1lnt0 posted this at 23:16 — 13th October 2005.
They have: 4 posts
Joined: Oct 2005
Thanks
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.