Answers for "how to show full background image in html"

4

full page background image in html

html { 
  background: url(images/bg.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 March-06-2020
4

how to make an image a full background in html

I have set the fixed position, you can set it to whatever you want.

.bg-image {
   width: 100%;
   height: 100%;
   position: fixed;
   right: 0;
   left: 0;
   top: 0;
   bottom: 0;
 }
Posted by: Guest on July-14-2021

Code answers related to "how to show full background image in html"

Browse Popular Code Answers by Language