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{
    float:right;
}
td span:first-child{
    float:left;
    color:red
}