JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td colspan="5"><span>$</span><span>1000</span>
</td>
</tr>
</table>
CSS
table {
width:300px;
border: 1px solid red;
}
td span:first-child + span {
float:right;
}