JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
    <p>Some text</p>
</div><!-- /box -->

<div class="box">
        
</div><!-- /box -->

CSS

body {
color: gray;
}

.box {
    background: #ccc;
    height: 100px;
    width: 200px;
    display: inline-block;   
}