Re: [css-d] Stupid question regarding background images and scrollin

2006-09-27 Thread Bradley Wright
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/

[css-d] Stupid question regarding background images and scrollin

2006-09-27 Thread Paul Seale
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