The below is my HTML. I have a total of 3 cards in three columns. The height of one card is set to flex so it gets auto adjusted to its content and I want the same height to be reflected to its sibling cards. Also, my requirement is not to use tables. I have tried display CSS property so far without success. I have attached an image of how it looks so far
.user-panel,
.user-panel .card {
min-height: 170px;
display: flex;
}
.user-panel,
.user-panel .card .item {
height: inherit;
text-align: center;
}
<div class="row no-padding user-panel">
<div class="col col-33 no-padding">
<div class="card no-padding">
<div class="item item-text-wrap">
<span>
<div>
<div class="row"><i class="user-profile-icon"></i> </div>
<div>{{data}}</div>
<div>(015106)</div>
</div>
</span>
</div>
</div>
</div>
<div class="col col-33 no-padding">
<div class="card no-padding">
<div class="item item-text-wrap">
<span>
<div>
<div>MY ACCESSES</div>
</div>
</span>
</div>
</div>
</div>
<div class="col col-33 no-padding">
<div class="card no-padding">
<div class="item item-text-wrap">
<span>
<div>
<div>MY ACCESSES</div>
</div>
</span>
</div>
</div>
</div>
</div>