Answers for "make image circle"

3

svg circle

<svg width="100" height="100">
  <circle cx="50%" cy="50%" r="10" fill="red"/>
</svg>
Posted by: Guest on May-21-2020
0

how to make image a circle css

img{
	clip-path: circle();
}

or

img{
	border-radius: 50%;
}
Posted by: Guest on September-21-2021
1

crop image with circle css

.image-cropper {
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

img {
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language