Is there a way to wrap an Image with transparent image without using position:absolute and top , left ,bottom and right positions ,I have tried to add div then img with transparent image url but it shows only the second image.
for example :
<style>
.Image{
width:100px;
height:100px;
border-radius: 50%;
}
</style>
<div class="Image" style="background-image:'url(./assets/Image.png)'">
<img class="Image" src="url(./assets/trans-image.png)"/>
</div>
