I'm looking to create responsive square image grids, each containing 9 images.
Currently, I have utilized a basic bootstrap grid layout to design these grids:
div class="col-md-4">
<img class="home_images" src="#image*" style="height:25%; width:27%">
<!--Nine more similar images-->
</div>
I am in need of adding a gray semi-transparent overlay square on top (using absolute positioning) of each grid to incorporate h2 text at the center of each one. However, as the grids do not have a fixed height, I am unsure how to proceed with this. Any suggestions?