img-top in bootstrap4 code example
Example 1: image responsive bootstrap 4
<img class="img-fluid" src="" alt=""> //This will make your image responsive
Example 2: bootstrap card change image
.card-img-top {
width: 100%;
height: 15vw;
object-fit: cover;
}