Can anyone help me align text and images to resemble this example:
https://i.sstatic.net/TzNZtvJj.png
Currently, it is displaying like this:
https://i.sstatic.net/M6gUdUEp.png
Here is the HTML and CSS I have used:
:root {
font-size: 10px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
------------------- (content abbreviated for brevity) ------------------------
.gallery-item-comments {
margin-right: 2.2rem;
}
.gallery-item-type {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 2.5rem;
text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, .1);
}
I have tried various solutions but still facing issues with the layout, especially the overlay for likes and comments. Any suggestions?