Hi,
I have the following declation to set all page elements to 0:
* { padding: 0; margin: 0; }
However, part of my site uses a CMS to manage content. The above code changes all table padding to 0, even if the user sets cellpadding=“5” for a particular table.
Can I override the CSS declation above (ie return it to browsers defaults for tables) to return control back to the end user, using standard table mark up?
Hope this makes sense - all help appreciated.
Martin