Answers for "how to add background image fit to webpagein css"

CSS
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 add background image fit to webpagein css"

Browse Popular Code Answers by Language