how do i make a background image smaller code example
Example 1: html background image fit to screen
body {
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
Example 2: background image height and width
.class{
background: url("../images/icons/map.png") no-repeat center center/50px 50px fixed;
}