Bootstrap 4:对齐卡片组内的内容

时间:2015-12-06 23:06:19

标签: html css twitter-bootstrap html-table bootstrap-4

我的Bootstrap 4页面上有一副牌。我想对齐这些按钮以获得更好的外观。我们怎么能这样做?

这是一张图片: Screenshot

以下是演示:http://7freres.com/new

桌子似乎没有用,因为它们是分开的。

Thanls

2 个答案:

答案 0 :(得分:3)

您可以使所有card-text元素具有相同的高度。 一种方法可以通过javascript。写一个这样的函数:

document.addEventListener("DOMContentLoaded", function(event) { 
    adjustCardTextHeights();
});

function adjustCardTextHeights() {
    var heights = $(".card-text").map(function() {
        return $(this).height();
    }).get();

    maxHeight = Math.max.apply(null, heights);

    $(".card-text").height(maxHeight);
}

或者使用jQuery:

$( document ).ready(function() {
    adjustCardTextHeights();
});

function adjustCardTextHeights() {
    var heights = $(".card-text").map(function() {
        return $(this).height();
    }).get();

    maxHeight = Math.max.apply(null, heights);

    $(".card-text").height(maxHeight);
}

这会让你: enter image description here

答案 1 :(得分:0)

您可以为按钮设置position: absolute; bottom: 20px;,并为padding-bottom: 50px;

添加额外的card-block