JSFiddle - React, Tailwind, and code Playground

by Alexandru Gatea

HTML

<table style="border: 1px solid black">
  <thead>
    <tr>
    	<th class="special">1</th>
			<th>2</th>
			<th>3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
    	<td>1</td>
			<td>2</td>
			<td>3</td>
    </tr>
		
		<tr>
			<td>1</td>
		</tr>
		
  </tbody>
	<tbody>
		<tr>
			<td>1</td>
		</tr>
	</tbody>
</table>

CSS

table, th, td {
  border: 1px solid black;
	border-collapse: collapse;
}

th, td {
	min-width: 60px;
	padding: 20px;
}