
May 25th, 2003, 09:10 PM
|
|
Contributing User
|
|
Join Date: Aug 2002
Posts: 110
Time spent in forums: 6 h 16 m 17 sec
Reputation Power: 11
|
|
|
css: background repeat = none?
I am looking for a way to keep a css background picture in one absolute position. When I scroll down the page I need the picture to stay in that one place. Does anybody know what attributes I would need to put in this css to make that happen? Thanks in advance.
.logo { background: url(images/logo.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
position:absolute;left:10px;top:10px;
}
|