I have CSS items for all my table elements (<table>
, <tr>
, etc...) but I have one table for which I don't want the CSS to apply.
What is the quickest way to have this table just display as a raw HTML table and not apply my CSS formatting.
Also, in my CSS file, I have this:
table td
{
padding: 5px;
border: solid 1px #e8eef4;
}
table th
{
padding: 6px 5px;
text-align: left;
background-color: #FFFFFF;
border: solid 1px #e8eef4;
}
what if I want to have multiple table formats, how do I do this?