What is the best way to add a border to an html table when I already have a rule in the css
*{border:0;}
If I add style=”border:1px;” into the table then I just get a border surrounding the entire table instead of for each cell as well which is what I should have when I use:
<table border="1" cellspacing="0" cellpadding="0">
Example