Answers for "background image cover all screen"

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

how to make background image fit to screen

body{
	background: url(""); /* enter the image path */
    background-repeat: no-repeat;
	background-size: 100%;
}
Posted by: Guest on April-26-2022

Code answers related to "background image cover all screen"

Browse Popular Code Answers by Language