Answers for "css image crop center"

CSS
2

css crop image to circle

background-image: url("url");
width:100px;
height:100px;
background-size:contain;
background-position:center;
border-radius:50%;
Posted by: Guest on March-25-2020
3

how to crop images in css

img{
	object-fit: cover;
}
Posted by: Guest on December-23-2020
0

css crop image

.imgContainerDiv {
  overflow: hidden;
}
Posted by: Guest on June-26-2021

Browse Popular Code Answers by Language