Reputation: 21
This has baffled me completely,i have tried multiple times todo this but i simple cant.I am sure the solution is simple and its something i have looked over.
All help appreciated.
Upvotes: 2
Views: 98
Reputation: 5269
Set background-attachment: fixed
on successive div
s:
div {
background-attachment: fixed;
background-position: 50% 60%;
height: 500px;
width: 100%;
}
You can skip the fixed height
declaration if your content will determine the height of the div
. I've included a container div
to display the effect in the confines of jsFiddle; in practice the body
will work just fine.
Upvotes: 2