简体   繁体   中英

Bootstrap three columns with dynamicaly inserted image

This is what I want to achieve:

在此处输入图像描述

But this is the result I get:

在此处输入图像描述

The img and text are inserted from the DB. This is the code:

<div class="row" style="margin-top: 8rem;">
   @foreach ($rooms as $room)
       <div class="col-4" data-category="{{ $room->data_category}}">
            <a href="#zoomImg{{ $room->id }}" data-bs-toggle="modal" data-bs-target="#zoomImg{{ $room->id }}">
                <img src="{{ $room->img }}" alt="" class="img-fluid">                        
            </a>
            <div class="text-left mt-3 mb-5">
                <p class="product-subtitle">{{ $room->name }}</p>
                <h4 class="product-title">Shop the Look</h4>
                <a class="product-price-link" href="#getPriceByRoom{{ $room->id }}" data-bs-toggle="modal" data-bs-target="#getPriceByRoom{{ $room->id }}">get price</a>
           </div>
      </div>
  @endforeach
</div>

I tried positioning the @foreach in a different way and still could't get the result I wanted. Any suggestions?

Found a solution to the layout on this article

.masonry-container {
 column-count: 3;
 column-gap: 15px;
}
.masonry-item {
 display: inline-block;
 width: 100%;
}
.masonry-item img {
 display:block;
 width: 100%;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM