JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tbody>
        <tr>
            <th>Name:</th>
            <td>foo</td>
            <th>Address:</th>
            <td>bar</td>
        </tr>
        <tr>
            <th>Name:</th>
            <td>foobaz</td>
            <th>Address:</th>
            <td>barbaz</td>
        </tr>
    </tbody>
</table>

CSS

th {
    color:red;
    float:left;
    position:relative;
    display:block; 
}
td {
    /* display:block;  */
    /* float:left; */
    color:green;
    /* position:relative; */
}