JSFiddle - React, Tailwind, and code Playground

HTML

<span class="img"> <img src="http://shop.1001sens.fr/64-169-home/tux-.jpg" /></span>

CSS

.img
{
    display: inline-block;
    position: relative;
}
.img img
{
    border-radius:10px; 
    display: block;
}
.img:after
{
    background-image: url(http://shop.1001sens.fr/themes/chloe3col/img/homefeatured/.png);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
body
{
    background-color: green;
    padding: 10px;
}