css make an image circular code example
Example 1: round image center
img.rounded {
object-fit: cover;
border-radius: 50%;
height: 100px;
width: 100px;
}
Example 2: how to make an image circular html css
img {
border-radius: 50%;
}
img.rounded {
object-fit: cover;
border-radius: 50%;
height: 100px;
width: 100px;
}
img {
border-radius: 50%;
}