Answers for "add image as background of website css and make it fit the whole page"

CSS
1

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
0

how to cover whole webpage by background image in html

background: url(images/bg.jpg) no-repeat center center fixed; 
  background-size: cover;
Posted by: Guest on November-26-2020

Code answers related to "add image as background of website css and make it fit the whole page"

Browse Popular Code Answers by Language