Answers for "stretch backgroudn image fit"

CSS
17

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
0

background image stretch to fill

background: url('../images/teaser.jpg') no-repeat center #eee;
background-size: cover;
Posted by: Guest on December-31-2021

Code answers related to "stretch backgroudn image fit"

Browse Popular Code Answers by Language