<div class="bl__from">
<div class="from__img">
<img src="https://cdn.pixabay.com/photo/2020/06/10/09/25/anemone-5281964_960_720.jpg" />
</div>
<div class="from__img">
<img src="https://cdn.pixabay.com/photo/2020/06/30/08/53/ladybug-5355655_960_720.jpg" />
</div>
<div class="from__img">
<img src="https://cdn.pixabay.com/photo/2020/06/30/22/46/butterfly-5357836_960_720.jpg" />
</div>
<div class="from__img">
<img src="https://cdn.pixabay.com/photo/2019/09/23/16/39/square-4499056_960_720.jpg" />
</div>
</div>
.bl__from {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;
}
.from__img {
width: 150px;
height: 150px;
margin: 0 10px 20px;
border-radius: 50%;
position: relative;
box-shadow: inset 10px 10px 10px rgb(0 0 0 / 50%);
}
img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
z-index: -1;
border-radius: 50%;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.