Answers for "How to make background fixed while scrolling"

CSS
3

how to make fixed background image in css

body {
  background-image: url("img_tree.gif");
  background-repeat: no-repeat;
  background-attachment: fixed;
}
Posted by: Guest on February-16-2021
0

How to make background fixed while scrolling

On-scroll fixed background
Posted by: Guest on January-27-2021

Code answers related to "How to make background fixed while scrolling"

Browse Popular Code Answers by Language