JSFiddle - React, Tailwind, and code Playground

by Pik_at

HTML

<table>
  <tbody>
      <tr>
        <th>Love</th>
        <td>Love is a variety of different feelings, states, and attitudes that ranges from interpersonal affection to pleasure.</td>
      </tr>
      <tr>
        <th>Day</th>
        <td>A day is a unit of time. In common usage, it is an interval equal to 24 hours</td>
      </tr>
    </tbody>
  </table>

CSS

th {
    vertical-align: top;
    text-align: left;
}