image background cover css code example
Example 1: css background image fit
body {
background-image: url(images/background.svg);
background-size: cover; /* <------ */
background-repeat: no-repeat;
background-position: center center; /* optional, center the image */
}
Example 2: html background image fit to screen
body {
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
Example 3: background cover css
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;