Answers for "how to fit the background image inside the page"

CSS
2

css background image size to fit screen

html {
    height: 100%
}
body {
    background-image:url("../images/myImage.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
Posted by: Guest on February-05-2021
2

how to fit background image in a webpage

html { 
  background: url('img.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 May-25-2021

Code answers related to "how to fit the background image inside the page"

Browse Popular Code Answers by Language