JSFiddle - React, Tailwind, and code Playground

HTML

<div class="content ltr">left to right</div>
<div class="content rtl">right to left</div>

CSS

.content {
    width: 500px;
    padding-left: 10px;
    border: 1px solid #ddd;
}

.content.rtl {
    float: ;
    direction: ;
}