I have a column like this:
<table class="mytable">
<tr>
<th></th>
<th></th>
<th style="display:none"></th>
</tr>
<tr>
<td></td>
<td></td>
<td style="display:none"></td>
</tr>
</table>
What is the CSS selector to apply a custom style on the last visible column (th and td), in this case, the second one?
I'm confused with pseudo classes/pseudo elements...