I\'m trying to implement the card-deck feature in bootstrap 4 to make all of my cards the same height.
The examples that bootstrap provides show 4 nice cards, but it
Define columns by min width based on viewport:
/* Number of Cards by Row based on Viewport */
@media (min-width: 576px) {
.card-deck .card {
min-width: 50.1%; /* 1 Column */
margin-bottom: 12px;
}
}
@media (min-width: 768px) {
.card-deck .card {
min-width: 33.4%; /* 2 Columns */
}
}
@media (min-width: 992px) {
.card-deck .card {
min-width: 25.1%; /* 3 Columns */
}
}
@media (min-width: 1200px) {
.card-deck .card {
min-width: 20.1%; /* 4 Columns */
}
}