I am in the process of creating a website using bootstrap 4. I have a background image that needs to have nine smaller images overlaid on top. However, the images are currently overlapping each other and need to be arranged properly. This layout also needs to be responsive for different screen sizes.
Below is my current code:
<div class="col-md-4 col-sm-4" >
<div class="column">
<img src="assets/images/bg.png" class="img-responsive" >
</div>
</div>
<div class="col-md-4 col-sm-4 " >
<div class="column">
<img src="assets/images/bg.png" class="img-responsive">
</div>
</div>
<div class="col-md-4 col-sm-4" >
<div class="column">
<img src="assets/images/bg.png" class="img-responsive" >
</div>
</div>
</div>