【发布时间】:2021-02-06 23:27:05
【问题描述】:
在中等大小和向上直到大屏幕第二个图像高度不等于其他图像 [在此处输入图片说明][1]
https://i.stack.imgur.com/Qcytg.png
<div class="container">
<div class="row ">
<% campgrounds.forEach(function(campground){ %>
<div class="col-sm text-center d-flex align-items-strech">
<div class="card">
<img class="card-img-top" src="<%=campground.image%>" alt="Card image cap">
<div class="card-body">
<h3 class="card-title"><%=campground.name%></h3>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<% }); %>
</div>
</div>
【问题讨论】:
-
您能否发布所有相关的 HTML?
标签: bootstrap-4 flexbox row css-grid grid-system