我的Bootstrap 4页面上有一副牌。我想对齐这些按钮以获得更好的外观。我们怎么能这样做?
以下是演示:http://7freres.com/new
桌子似乎没有用,因为它们是分开的。
Thanls
答案 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);
}
答案 1 :(得分:0)
您可以为按钮设置position: absolute; bottom: 20px;
,并为padding-bottom: 50px;
card-block