how to fit background image in a webpage code example
Example: 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;
}