JSFiddle - React, Tailwind, and code Playground

by DoubleYo

HTML

<section>
    <h2>Titre</h2>
    <div class="row">
        <img src="http://widgets.markosweb.com/worth/b/thy.com.gif" />
        <p>Lorem Ipsum<br/>
            Lorem Ipsum<br />
            Lorem Ipsum</p>
    </div>
    <div class="row">
        <img src="http://www.dzineblog360.com/wp-content/uploads/2010/12/The-Power-of-HTML-5-and-CSS-3.jpg" />
    </div>
</section>

CSS

section {
    display: table;
    background: green;
}

h2 {
    display: table-caption;
    background: olive;
}

.row {
    display: table-row;
}

img, p {
    display: table-cell;
    vertical-align: top;
}

p {
    margin-left: 20px;
}