Answers for "fixed image css background"

CSS
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
7

css background image

background-image: url("image.gif");
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language