JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="dots">
    <div class="dot"></div>
    <div class="dot"></div>
    <div class="dot"></div>
</div>

CSS

div.dot {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: red;
}
div.dots {
    text-align: right;
}