Fullscreen background css.


Add the code below to the top of your .css file. Change the image name / location & everything’s good to go….

CSS

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;
}

#Web #HTML #CSS #Code