作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码。我正在使用 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 做到这一点
最佳答案
行中最大缩略图的高度是多少?
始终将缩略图类设置为该高度
.thumbnail{
width:250px;
height:600px !important;
}
关于css - 如何调整 Bootstrap 3 缩略图以占据空白空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64612873/
我是一名优秀的程序员,十分优秀!