JSFiddle - React, Tailwind, and code Playground

HTML

<div class="ligne">
  <img src="https://placehold.it/350x150">
  Texte 1
</div>

<div class="ligne">
  <img src="https://placehold.it/350x150">
  Texte 2
</div>

CSS

.ligne {
  border: solid 1px black;
}

.ligne img {
  vertical-align: top;
}