JSFiddle - React, Tailwind, and code Playground

by Wentz Wu

HTML

<div class="container">
    <div>
        1
    </div>
    <div>
        this is a book.<br>
        this is a book.<br>
        this is a book.<br>
        this is a book.<br>
        this is a book.<br>
        this is a book.<br>
        this is a book.<br>
    </div>
</div>

CSS

div{
    border: 1px solid red;
    margin: 5px;
}

.container div {
    display: inline-block;
    float: left;
}