JSFiddle - React, Tailwind, and code Playground

by Anov Siradj

HTML

<table>
  <thead>
    <tr>
      <th>id</th>
      <th rowspan="2">extra</th>
      <th>aksi</th>
    </tr>
  </thead>
</table>

<hr>

<table>
  <thead>
    <tr>
      <th>id</th>
      <th rowspan="2" colspan="2">extra</th>
      <th>aksi</th>
    </tr>
    <tr>
      <th>id</th>
      <th>aksi</th>
    </tr>
  </thead>
</table>

CSS

th,td {
	border: 1px solid red;
}