Answers for "css background fit image"

CSS
10

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 */
}
Posted by: Guest on April-24-2020
2

background image height and width

.class{
	background: url("../images/icons/map.png") no-repeat center center/50px 50px fixed;
}
Posted by: Guest on September-29-2020

Browse Popular Code Answers by Language