I have several images and I want to make a presentation like on Facebook, by unwinding the images on the previous ones :
Here are my images, they are with a View Drupal 9 block :
I created the following CSS :
.block-views-blockgroup-subscribers-block-1 .view-content {
display: flex;
flex-direction: row;
position: relative;
}
.block-views-blockgroup-subscribers-block-1 .views-field-user-picture img {
border: 2px solid #f7f9fa;
border-radius: 50%;
transform: translateX(-25%);
}
But it doesn't work because the images are not displayed on top of the previous image.
How to overflow the images on the previous ones ?