Answers for "how to make image cover entire div css"

CSS
5

how to cover full image in css

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
Posted by: Guest on March-03-2020
1

how to make img cover parent div

img {
	object-fit: cover;
}
Posted by: Guest on February-27-2021

Code answers related to "how to make image cover entire div css"

Browse Popular Code Answers by Language