"how to stop the "fixed" background image from overflowing into other sections
Hello Guys, Can somebody please help me figure out "how to stop the "fixed" background image from overflowing into other sections" of the website.
I only want the fixed image to show when I scroll in that section, but I don't want it to be visible when scrolling to other sections, or overflowing from the top and bottom. Thank you
https://codepen.io/Eddiev10/pen/YzoXRaG
3 Replies
well, you are fixing the image relative to the body.
if you want a fixed background only on that section, you can make it a background with background-attachment: fixed on that section
something like this
I appreciate that, thank you.