JSFiddle - React, Tailwind, and code Playground

by oti ext

HTML

<table>
  <thead>
    <tr>
      <th>T</th>
      <th>K</th>
      <th>G</th>
      <th rowspan="2">!</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>う</td>
      <td>ま</td>
      <td>い</td>
    </tr>
  </tbody>
</table>

<hr>

<table>
  <tr>
    <th>T</th>
    <th>K</th>
    <th>G</th>
    <th rowspan="2">!</th>
  </tr>
  <tr>
    <td>う</td>
    <td>ま</td>
    <td>い</td>
  </tr>
</table>

CSS

th {
  background-color: tomato;
}

td {
  background-color: gold;
}