Image Overlay Effect

Create text overlays on images using positioning.

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>

More CSS Image Styling Examples (8)