Answers for "css background image fit to screen but not stretch"

CSS
2

css background image size to fit screen

html {
    height: 100%
}
body {
    background-image:url("../images/myImage.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
Posted by: Guest on February-05-2021
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 "css background image fit to screen but not stretch"

Browse Popular Code Answers by Language