JSFiddle - React, Tailwind, and code Playground
HTML
<table class="table">
<tr>
<td class="cell">
SAMPLE TEXT
</td>
</tr>
</table>
CSS
.table {
width: 100%;
}
.table td {
text-align: left;
color: Yellow;
background-color: Red;
}
.cell {
text-align: right;
}