I'm having an issue where the images are not displaying properly. When I try replacing the image line with something like <h1></h1>
, it works just fine. Why is this not working with images? I also attempted using
div class="col col-lg-2 col-md-3"
, but that didn't solve the problem either. It must be something simple, and my brain just can't figure it out...
<div class="container">
<button type="button" data-toggle="collapse" data-target="#gallery button">Simple collapsible</button>
<div id="gallery button" class="collapse">
<section class="gallery min-vh-100">
<div class="row row-md-3">
<div class="col">
<img src="images/art_img000.jpg" class="gallery-item">
</div>
<div class="col">
<img src="images/art_img000.jpg" class="gallery-item">
</div>
<div class="col">
<img src="images/art_img000.jpg" class="gallery-item">
</div>
<div class="col">
<img src="images/art_img000.jpg" class="gallery-item">
</div>
</div>
</section>
</div>
</div>