resize a background image code example
Example 1: html background image fit to screen
body {
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
Example 2: how to scale a bg image acc to size of div
/* One way */
background-size: cover;
/* Other option */
background-size: contain;