JSFiddle - React, Tailwind, and code Playground

by jonathanmh

HTML

<div>
    <img src="http://placekitten.com/202/200">
        <p>sød kat</p>
</div>
<div>
    <img src="http://placekitten.com/201/200">
        <p>sød kat</p>
</div>
<div>
    <img src="http://placekitten.com/201/200">
        <p>sød kat</p>
</div>
<div class="footer">
    copyright: Jonathans cute cat photography
</div>

CSS

img {
    width: 50px;
}

div {
    width: 70px;
    float: left;
}

.footer {
    width: 100px;
    clear: left;
}