I have two tables, this is just the 2nd. I want to style the 2nd table without affecting the first table. I also do not want to have to id or create classes for each tag. Visual studio seems to understand what I'm telling it to do but its not translating onto the web page. What am I missing?
<style>
.t2 > tr th td{
border: 1px solid white;
}
</style>
<table class="t2">
<tr>
<th>Column 1</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>