Reputation: 57
I'm using the card bootstrap parameters, but my differents card-img-top resizes differently. I'm searching for css in order to make them even but trying to maintain the same quality or similar.
Upvotes: 1
Views: 77
Reputation: 26
Try this out:
.card-img-top {
height: 15vw;
object-fit: cover;
width: 100%;
}
Upvotes: 1