JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
      <td class="left">
          <span>Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text Dynamic text</span>
        </td>
      <td class="right">
          <span>Fixed text</span><br/><span>Fixed text</span>
        </td>
    </tr>
</table>

CSS

table {
    border-collapse: collapse;
}

.left {
    background-color: green;
}

.right { 
    width: 80px;
    text-align: center; 
    vertical-align: bottom; 
    background-color: red;
}