如何调整bootstrap3个缩略图占空?
How to adjust bootstrap 3 thumbnails to occupy empty spaces?
这是我的代码。我正在使用 express.js。这是 ejs 文件。下面的代码截图是
<%- include ("../partials/header") %>
<div class="container">
<header class="jumbotron">
<div class="container">
<h1>Welcome To YelpCamp!</h1>
<p>View our hand-picked campgrounds from all over the world</p>
<p>
<a class="btn btn-lg btn-primary" href="/campgrounds/new">Add new Campground </a>
</p>
</div>
</header>
<div class="row" style="display:flex; flex-wrap:wrap;">
<% campgrounds.forEach(function(campground){ %>
<div class="col-md-3 col-sm-6">
<div class="thumbnail">
<img src="<%= campground.image %>">
<div class="caption">
<h4> <%= campground.name %> </h4>
</div>
<p>
<a href="/campgrounds/<%= campground._id %>" class="btn btn-primary">More Info</a>
</p>
</div>
</div>
<% }); %>
</div>
</div>
<%- include ("../partials/footer") %>
我想调整缩略图以占据中间的空白区域,因为它看起来很丑陋。有什么方法可以使用 bootstrap 3
(我在图片中也做了标记,请参考图片)
感谢任何帮助..
行中最大缩略图的高度是多少?
将缩略图 class 始终设置为该高度
.thumbnail{
width:250px;
height:600px !important;
}
这是我的代码。我正在使用 express.js。这是 ejs 文件。下面的代码截图是
<%- include ("../partials/header") %>
<div class="container">
<header class="jumbotron">
<div class="container">
<h1>Welcome To YelpCamp!</h1>
<p>View our hand-picked campgrounds from all over the world</p>
<p>
<a class="btn btn-lg btn-primary" href="/campgrounds/new">Add new Campground </a>
</p>
</div>
</header>
<div class="row" style="display:flex; flex-wrap:wrap;">
<% campgrounds.forEach(function(campground){ %>
<div class="col-md-3 col-sm-6">
<div class="thumbnail">
<img src="<%= campground.image %>">
<div class="caption">
<h4> <%= campground.name %> </h4>
</div>
<p>
<a href="/campgrounds/<%= campground._id %>" class="btn btn-primary">More Info</a>
</p>
</div>
</div>
<% }); %>
</div>
</div>
<%- include ("../partials/footer") %>
我想调整缩略图以占据中间的空白区域,因为它看起来很丑陋。有什么方法可以使用 bootstrap 3 (我在图片中也做了标记,请参考图片) 感谢任何帮助..
行中最大缩略图的高度是多少?
将缩略图 class 始终设置为该高度
.thumbnail{
width:250px;
height:600px !important;
}