Let's fit as many text lines as the div's height allows.
<div class="row g-0">
<div class="col-md-3 align-content-center">
<div class="d-flex justify-content-center">
<!-- svg image -->
</div>
</div>
<div class="col-md-9 align-content-center">
<h5 class="card-title">Lorem ipsum dolor sit amet, consectetur adipiscing elit</h5>
</div>
</div>
Desired result:
| | Lorem ipsum dolor |
| SVG | sit amet, |
| | consectetur ad... |
I've been experimenting with different properties but haven't found a solution.
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-height: inherit;
position: absolute;
Is there a solution using only Bootstrap classes?
Thank you.