I specified a height and width for all card images, but the heights are inconsistent with one being too large and another too small. I want each card to have the same height and width. How can I achieve this? Here is what I tried.
.card {
height: 50%;
width: 50%;
}
.card {
background-color: #f8f9fa;
}
.card-body {
padding: 15px;
}
.card-img-top {
height: 200px;
width: 100%;
object-fit: cover;
}
.card .btn {
background-color: #007bff;
color: #fff;
}
https://i.sstatic.net/cTuGQ.jpg
The second image from the left has an excessively large height.