Looking to hide the first td of the second row in the table below with a class of "visi". Any suggestions on how to achieve this?
.visi{ display:none;}
<table border="1" cellpadding="1">
<tr>
<td class="visi" rowspan="2">__</td>
<td>1</td>
</tr>
<tr>
<td class="visi" rowspan="2">__</td>
<td>2</td>
</tr>
</table>