Answers for "how to make a picture full screen css"

CSS
0

css background full screen

body { 
  background: url(img/bg-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-17-2020
-1

how to many image fullscreen in css

<img src="images/bg.jpg" id="bg" alt="">
Posted by: Guest on September-26-2021

Code answers related to "how to make a picture full screen css"

Browse Popular Code Answers by Language