Answers for "how to set background automatically with my screen height"

0

how to set background automatically with my screen height

body {

    background-image: url("img_tree.gif");

   background-repeat: no-repeat;   
 background-attachment: fixed;
  
   background-position: top center;
  background-size: contain;

 }
Posted by: Guest on September-12-2020
-1

how to set background automatically with my screen height

html { 
  background: url(image.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
Posted by: Guest on September-12-2020

Code answers related to "how to set background automatically with my screen height"

Code answers related to "Javascript"

Browse Popular Code Answers by Language