Answers for "can i set a background image in a div to cover entire page"

CSS
0

how to cover entire div with background image

.divname{
	background-image: url(""); 
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; 
    height: 100%; 
    
}
Posted by: Guest on September-09-2021

Code answers related to "can i set a background image in a div to cover entire page"

Browse Popular Code Answers by Language