Circular Image Shape

Use border-radius to create circular images.

Preview

Code

<style>
img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
}
</style>

<img src="https://via.placeholder.com/140">

More CSS Image Shapes Examples (8)