JSFiddle - React, Tailwind, and code Playground

HTML

<div class="block">
    <p><img src="http://beerhold.it/100/100" alt="картинко" /> текстик</p>
    
</div>
<h2>и еще текстик</h2>

<div class="table">
    <p><img src="http://beerhold.it/100/100" alt="картинко" /> текстик</p>
    
</div>
<h2>и еще текстик</h2>

CSS

div { background: #ccc; }

h2 { background: #eee; }

img { float: left; }

p { margin-bottom: 95px; }

.block:after {
    content: '';
    clear: both;
    display: block;
}

.table:after {
    content: '';
    clear: both;
    display: table;
}