Bootstrap 5 card image overflow issue

Put a max-width in there to make the image shrink.

e.g.

.card-body img.rounded-circle {
  max-width: 100%;
  height: auto;
}

1 Like