If we consider the layout order like this:
H3
<LEFT-FLOATED IMG> <text>
<H3>
<LEFT-FLOATED IMG> <text>
For smaller screen sizes, everything looks fine: https://i.sstatic.net/Dz0BB.png
But when the screen gets bigger, a problem arises: https://i.sstatic.net/uCxls.png
Here is the code snippet, using Bootstrap-4 for float-left, etc:
<h3>Pigmentary variegation</h3>
<img class="img-fluid float-left mr-2 mb-0" src="../assets/image/articles/variegation/pigmentary variegation.jpg" alt="pigmentary_variegation_example">
<p>Text for pigmentary variegation</p>
<h3>Pathological variegation</h3>
<img class="img-fluid float-left mr-2 mb-0" src="../assets/image/articles/variegation/pathological_variegation.jpg" alt="mosaic virus">
<p>Text for pathological variegation</p>
Is there a way to prevent text from wrapping around the left-floated image when it reaches the bottom of the H3 element?