gpt4 book ai didi

twitter-bootstrap-3 - Bootstrap 3 等高缩略图(如 bootstrap 4 中的等高卡片)

转载 作者:行者123 更新时间:2023-12-04 08:09:15 26 4
gpt4 key购买 nike

我有一排这样的缩略图:



不过,我希望它们的高度相同。这是我的代码:

<div class="row text-center">
<div class="col-md-3 col-sm-6">
<div class="thumbnail">
<div class="caption">
<h3>HOTKEY + COMBO</h3>
<p>Hotkey description goes here. Category only shown in explore.</p>
<p>
<a href="#" class="btn btn-default" data-tooltip="Change Hotkey">
</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail">
<div class="caption">
<h3>HOTKEY + COMBO</h3>
<p>short desc</p>
<p>
<a href="#" class="btn btn-default" data-tooltip="Change Hotkey">
</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 hotkey-add">
<div class="thumbnail">
<div class="caption">
<p></p>
<p><a href="#" class="btn btn-default"><span class="glyphicon glyphicon-plus"></span></a></p>
</div>
</div>
</div>
</div>

这可能吗?就像我们在 bootstrap4 中看到的一样,这里是等高卡片:

http://www.codeply.com/render/KrUO8QpyXP#

最佳答案

我知道我在这方面有点晚了,但我认为最好的方法是 flexbox 。以下是它在 Bootstrap 3 中的工作方式:

.row.display-flex {
display: flex;
flex-wrap: wrap;
}
.thumbnail {
height: 100%;
}

只需将 display-flex 添加到包含的 row 。此外,即将推出的 Bootstrap 4 将 flexbox 作为默认设置,因此将来不需要这个额外的 CSS。

Thumbnails with flexbox

您还可以使用 position of child elements 做更多事情。

还看到,
make Bootstrap columns all the same height

关于twitter-bootstrap-3 - Bootstrap 3 等高缩略图(如 bootstrap 4 中的等高卡片),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40687425/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com