You already have thead
and tbody
as separate references, so there’s no need for special expressions. I’m not sure what exactly you are trying to achieve, but this should give you all the options you are looking for.
/* The header */
.revista thead {
font-size: 2.0em;
color: red;
}
/* The first row */
.revista tbody tr:first-child {
font-size: 2.0em;
color: green;
}
/* All (other) rows */
.revista tbody tr {
font-size: 1.2em;
color: blue;
}
<table class="revista">
<thead>
<tr>
<td>MY LINK</td>
</tr>
</thead>
<tbody>
<tr>
<td>SUMMER 2020</td>
</tr>
<tr>
<td>SUMMER 2021</td>
</tr>
<tr>
<td>SUMMER 2022</td>
</tr>
</tbody>
</table>