Published
- 1 min read
how to make image a circle css
The solution for this is noted below
how to make image a circle css
Solution
img{
clip-path: circle();
}
or
img{
border-radius: 50%;
}
Try other methods by searching on the site. That is if this doesn’t work