how to make image in circle css code example
Example 1: css photo circle
img{
clip-path: circle();
}
Example 2: convert image in rounshape in css
img {
border-radius: 50%;
}
Example 3: round image center
img.rounded {
object-fit: cover;
border-radius: 50%;
height: 100px;
width: 100px;
}