Answers for "how to make a fixed background image using css"

PHP
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
9

html static background

body {
  background-image: url("img_tree.gif");
  
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  background-size: cover;
}
Posted by: Guest on April-04-2020
1

how to make a fixed background image using css

fixed background
Posted by: Guest on June-08-2021

Code answers related to "how to make a fixed background image using css"

Browse Popular Code Answers by Language