Paul Seale wrote:
> What I would like to happen is for the background to scroll down with the
> text. Thoughts?
>
http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-attachment
.selector {
background-attachment: fixed;
}
A practical example is here:
http://www.dellwebsites.com/
Here is a piece of code that works like I want it to in IE, but not in Fire
fox.
#viewer_about {
position:absolute;
left:10px;
top:8px;
width:608px;
height:234px;
background-image:url(../images/header_about.jpg);
overflow:auto;
}
Wha