How to Fix a background Image while the page is being Scrolled | Using CSS
To make a background image static while the content
scrolls over it, we have to use the background-attachment
property like so,
CSS Code:
<style>
img { background-image:
url(background.png);background-attachment:fixed;}
</style>
Comments
Post a Comment
Thanks for Visiting for any questions or suggestions please comment below
Cheers,