Answers for "how to use full image in background 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 full cover background image

body { 
  background: url(path/to/bg-image.jpg) no-repeat center center fixed;
  background-size: cover;
}
Posted by: Guest on March-31-2021
-1

how to cover full background with css

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

Code answers related to "how to use full image in background css"

Browse Popular Code Answers by Language