-1

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.

1 Answers1

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