Okay, here is my...
HTML:
<table id="standings"><tr>
<td>Standings</tr></td>
</table>
CSS:
#standings table{
border-top:1px solid black;
border-left:1px solid black;
}
#standings table td{
border-bottom:1px solid black;
border-right:1px solid black;
}
That is the only part of my CSS that is not working. All the other CSS is corresponding with my HTML document, only that table is not styling.
Btw, I am trying to make a 1px table border which has worked for me many times before which is why I am very curious why it is not working now....
Thanks so much for your help!