Answers for "how to make image fit to screen in css"

CSS
0

how to cover full image in css

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
Posted by: Guest on March-03-2020
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 image fit to screen in css"

Browse Popular Code Answers by Language