I just updated to the latest Bootstrap 5.0 beta version and I'm working with this html code snippet:
<div>
<div class="d-flex flex-row">
<img src="img/funny.png" alt="">
<div class="ms-4">
This is just
<br>a simple test
<br>with some line breaks
<br>just to get some height
</div>
</div>
</div>
It's a flexbox row setup with an image on the left of a div containing text. My goal now is to adjust the height of the image to match that of the div. How can I achieve this responsively? Currently, it looks like this: