Answers for "responsive css background"

CSS
0

css responsive background

/* fill the entire container and crop the image if needed */
background-size: cover;
/* fit the image inside the container */
background-size: contain;
Posted by: Guest on July-06-2021
0

background shrinks when responsive

html,
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}
Posted by: Guest on October-14-2020

Code answers related to "responsive css background"

Browse Popular Code Answers by Language