Answers for "which property is used to set the background image of an element to be scrolled according to the page content or fixed on scrolling?"

CSS
4

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

Code answers related to "which property is used to set the background image of an element to be scrolled according to the page content or fixed on scrolling?"

Browse Popular Code Answers by Language