I'm trying to style my table very simply:
table{
border: 1px;
cellpadding: 3px;
cellspacing: 0px;
}
td{
text-align:center;
}
The td styling works (so I know it's finding the CSS file correctly), but the table styling doesn't. I can add the table styling directly to the table tag and that works (so the arguments are correct), so I'm not sure what I'm doing wrong.