Table cellpadding and cellspacing with CSS resets?

I am using a CSS reset file to reset all margins and paddings. When I create a table using the standard table tag now the cellpadding and cellspacing attributes do not affect the actual table. Is there a good way to use CSS resets yet still retain the functionality of the table cellpadding and cellspacing attributes WITHOUT having to use CSS to style the table?

(The site I am working on is for a client without HTML knowledge. The site utilizes a CMS with a WYSIWYG and when you add a table to the page it uses cellpadding and cellspacing. Because of the CSS resets, those attributes do not modify the display of the table.)

Nevermind, I figured it out. I added


table { border-collapse:separate; }

to my CSS file and cellpadding and cellspacing attributes now work.