Answers for "How do I make a background image fit the whole page CSS?"

CSS
0

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

Code answers related to "How do I make a background image fit the whole page CSS?"

Browse Popular Code Answers by Language