JSFiddle - React, Tailwind, and code Playground

by tabalinas

HTML

<div class="container">
    <div class="content"></div>
</div>

CSS

.container {
    height: 100px;
    width: 100px;
    border: 1px solid black;
    line-height: 100px;
}

.content {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: skyblue;    
}