JSFiddle - React, Tailwind, and code Playground

by Laurent Dufour

HTML

<div>
  <h1>
    NO FLOAT
  </h1>
  <img src="https://picsum.photos/100" alt="">
</div>
<br><br><br>
<div>
  <h1>
    FLOAT
  </h1>
  <img src="https://picsum.photos/100" alt="" class="float">
</div>

CSS

div {
  background: pink;
}
.float {
  float: left;
}