JSFiddle - React, Tailwind, and code Playground
by Sachin Patel
HTML
<table>
<thead>
<tr>
<th>Col1</th>
<th> Col2</th>
<th>Col3</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>11</td>
<td>12</td>
<td>13</td>
</tr>
<tr>
<td>21</td>
<td>22</td>
<td>23</td>
</tr>
<tr>
<td>31</td>
<td>32</td>
<td>33</td>
</tr>
</tbody>
</table>
<p>
Hello World...
<br>
<br>Hello World...
<br>
<br>Hello World...
<br>
<br>Hello World...
<br>
<br>
</p>
CSS
tr:first-of-type, tr:last-of-type {
background: red;
}
p{
text-shadow: 0pt 72pt 5px;
}