JSFiddle - React, Tailwind, and code Playground

by Paul Kutakov

HTML

<body>
    <div class="container">
        
        <div class="right">2R</div>
        <div class="right">1R</div>
    </div>
</body>

CSS

html, body{
    width:100%;
}
.container{
    width:100%;
    background-color: #eee;
}
.right{
    float:right;
    background-color:#888;
}