Is there a way to add a responsive centered text element to my <a>
element without being affected by the overlay color? Also, is there an alternative method to using an extra overlay div in Bootstrap 4?
Check out this link for more details.
HTML
<div class="container">
<div class="row">
<div class="col-md-3">
<a class="item" href="#">
<div class="image">
<img src="https://lorempixel.com/output/technics-q-c-640-480-4.jpg" alt="" />
<div class="overlay"></div>
</div>
</a>
</div>
</div>
</div>
CSS
.image { position: relative;}
.image img { max-width: 100%; max-height: 100%; }
.overlay { position: absolute; top: 0; left: 0; right:0; bottom:0; background-color: rgba(0,0,0,0.5);}