I want to apply background-attachment: fixed on my website (horizontal scroll), but it did not seem work well, whereas it works just well on vertical scroll website.
Asked
Active
Viewed 504 times
1 Answers
0
make background-position:
with repeat mode it works well for horizontal scrolling websites
.myClass {
background-image:url(myimg.png);
background-repeat:repeat-y;
background-position: -5px 5px; /* Any percentage or pixel value you want or you can use center top etc.*/
}

jafarbtech
- 6,842
- 1
- 36
- 55
-
I tried this, it just changes the background position, what I want is same exact behavior as background-attachment: fixed. – Christopher Bobby Nov 23 '16 at 05:27
-
then post some code. so that some one can find a solution for it – jafarbtech Nov 23 '16 at 05:29