I need a row with 2 columns, where the height of the row is determined by the content of column 1. Column 2's content should be truncated if needed.
<div class="container">
<div class="row">
<div class="col-3" style="background-color: yellow;">Lorem, ipsum dolor.</div>
<div class="col-9" style="background-color: blue;">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tempora, vitae!</div>
</div>
At times, the 2nd column breaks while the first one remains intact due to varying widths. This situation should be prevented.
The reason for this design is to have an image in the first column that always fills the full height of the row, while the text in column 2 serves as a preview and can be shortened if needed.