JSFiddle - React, Tailwind, and code Playground

by Denni Adam

HTML

<table>
	<thead>
		<tr>
			<th>One</th>
			<th>Two</th>
			<th>Three</th>
			<th>Four</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>un</td>
			<td>deux</td>
			<td>trois</td>
			<td>quatre</td>
		</tr>
	</tbody>
</table>

CSS

* {margin:0;padding:0;border:0;border-collapse:collapse;}

table { width:100%; }

tbody {
   background: repeating-linear-gradient(
     45deg,
     rgba(222,22,22,1) 0%,
     rgba(222,222,222,1) 100%
  );
}