Image Overlay Effect
Preview
Code
<style>
.container{
position:relative;
width:160px;
}
.container img{
width:100%;
}
.overlay{
position:absolute;
bottom:0;
background:rgba(0,0,0,0.6);
color:white;
width:100%;
text-align:center;
padding:6px;
}
</style>
<div class="container">
<img src="https://via.placeholder.com/160">
<div class="overlay">Caption</div>
</div>