I am using Bootstrap 4's card groups. I want to align both buttons at the same line which should be at bottom of the .card.
The jsfiddle.
I tried
.card {
position: relative;
}
.btn {
position: relative; // <- if I use absolute here, it will be ugly
bottom: 0;
}
and also
.card {
display: table;
}
.btn {
display: table-cell;
vertical-align: bottom;
}
But neither works.