make image circle in css code example
Example 1: css circle
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 2: css photo circle
img{
clip-path: circle();
}
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
img{
clip-path: circle();
}