Answers for "make an image circular css"

CSS
2

how to make image a circle css

img{
	clip-path: circle();
}

or

img{
	border-radius: 50%;
}
Posted by: Guest on September-21-2021
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

Browse Popular Code Answers by Language