Just how much is a "large amount of styles"?
Considering this:
@paul...yes...I also agree, but the
problem is mine is a legacy app and I
have to change the style
everywhere(lots of code to change) and
if I miss anyone, it will result in
style breaking. – rubyprince
Unless there's a joke quantity, your best bet is to override all properties defined on table to a sensible default.
To find out what the "default value" of each property is, see: How can I nullify css property?
A concrete example: http://jsfiddle.net/nE4qm/
table {
font-size: 20px;
color: red;
margin: 20px;
position: relative;
left: 30px;
text-align: center;
border: 1px solid #000
}
.removeStupidTableCSS {
font-size: medium;
color: #000;
margin: 0;
position: static;
left: auto;
text-align: left;
border: 0
}
.myShinyNewTable {
color: blue
}
<table>
<tr>
<td>Old table</td>
</tr>
</table>
<hr />
<table class="removeStupidTableCSS myShinyNewTable">
<tr>
<td>New table</td>
</tr>
</table>