Is it possible to have overflow: hidden;
base on 1st column div
?
I have in bootstrap row div col-md-9 with MySQL content div col-md-3 with MySQL content
I would like adjust the height of these 2 columns but based on the 1st column's data.
If 2nd coumn has more data than the 1st column, the data of the 2nd column must be cut (with overflow: hidden;
for example) to have an equal column.
My code for now :
<div class="container-fluid">
<div class="row" style="display: flex;flex-wrap: wrap;">
<div class="col-md-9" style="display: flex;flex-wrap: wrap;">
MySQL data
</div>
<div class="col-md-3" style="display: flex;flex-wrap: wrap;">
MySQL data
</div>
</div>
</div>