JSFiddle - React, Tailwind, and code Playground

HTML

<table dir="rtl">
    <tr>
        <td>hola</td>
    </tr>
</table>
<input type="text" />

CSS

table
{
    border: 5px solid #15bbce;
    width: 500px;
}

input[type="text"]
{
    direction: rtl;
}