This is my CSS cut:
html, body, * {
padding:0;
margin:0;
}
I need to modify it, so if any table has a cellpadding="4" attribute, then it won’t add padding:0; to that and will use this attribute instead : cellpadding="4".
Is it possible?
I believe you have to use padding:inherit; also, declare it after your html,body,* line.
UPDATE
If your cells are being affected by your * css code, you can include a line specifically for td elements: