JSFiddle - React, Tailwind, and code Playground

HTML

<table id='container'>
<tr>
    <td class='left'>Two line text</td>
    <td class='right'>Float right</td>
</tr>
</table>

CSS

.right {
    border:1px solid blue;
    margin-top:auto;
    margin-bottom:auto;
    text-align:right;
}

.left {
    border:1px solid orange;
    width: 50px;
    display: inline-block;
}
#container{
     border:1px solid red;
     width:100%;   
}