So I have a global reset rule:
* {
margin:0px;
padding:0px;
}
I also have a LOT of tables with pre-defined cellpadding values. However, the global reset rule is killing all the cellpadding values. What would be the best way to get the cellpadding back without having to create a specific css rule for each table? (There are a lot of tables.)
Thanks in advance.
EDIT: to clarify, if I took out the padding:0px;
rule then all the tables would look perfect. But, I still need the global reset for other stuff.