Is there a way to overlay an icon on top of an image?
.item {
position: relative;
}
.des {
color: #fff;
text-align: left;
}
<div class="card">
<div class="item">
<img class="card-img-top" src="images/g33.jpg" alt="Avatar">
<div class="des">
<i class="fa fa-plus-square" style="font-size:48px;color:red"></i>
</div>
</div>
<div class="card-body">
<h5 class="card-title ">Farwa Waheed</h5>
<p class="card-text" style="font-size:13px;"> Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
</div>
</div>
I envisioned the icon being positioned at the bottom left corner of the image, but unfortunately it appears below the image instead.