I need to have all the cards same height. But the content inside is responsive so if the title is larger, it makes my card height larger. It is fetched from database.
I am using Angular. Content of file Field-list is:
<div class="card" *ngIf="jobFieldsList">
<div class="row no-gutters">
<div class="col-4 centering">
<img [src]="imageUrl" class="img-fluid">
</div>
<div class="col">
<div class="card-block px-2">
<h6 class="card-title mt-3">{{jobFieldsList.nazivPodrocja[0].naziv}}</h6>
<p class="card-text mb-2" style="margin-right: 20%;">število trenutno prostih
delovnih mest:</p>
</div>
</div>
</div>
</div>
Content of file field-item is:
<div class="row">
<div class="col-4 mb-4" *ngFor="let jobField of jobFieldsList">
<app-job-fields-item [jobFieldsList]="jobField"></app-job-fields-item>
</div>
</div>
I am trying to solve the problem but I can't.. I need to have all the cards height like the biggest card. It would be perfect