Currently, I have the following code implemented on an element that extends 100% of the browser:
#section_white {
background-attachment:fixed;
background-image:url(image_url_here.jpg);
background-position:100% 100%;
background-repeat:no-repeat no-repeat;
background-size:cover;
}
My goal is for the image to cover the entire width of the browser while staying fixed (allowing content to scroll over it).
This setup seems to be functioning properly on all browsers except for Safari - any suggestions on what may be missing?
I attempted to set the height and min-height of the element to 100%, but it did not produce the desired outcome.
To view a demonstration page, visit: