Gerard
Gerard

Reputation: 57

Resizing bootstrap cards to match them

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.

The idea is to match the cards in size w/o losing too much quality

Upvotes: 1

Views: 77

Answers (1)

Robinson Honour
Robinson Honour

Reputation: 26

Try this out:

.card-img-top {
  height: 15vw;
  object-fit: cover;
  width: 100%;
}

screenshot

Upvotes: 1

Related Questions