I create "normal" table and all TD's have "border: 1px solid #e6e6e6" and "margin: 0". TR and TABLE have too "margin/padding: 0" but I still have space between TDs like here: h
Why? :)
<td></td>
http://jsfiddle.net/VfSdV/
Since cellspacing and cellpadding are no longer supported in HTML5, use the following CSS:
cellspacing
cellpadding
table { border-collapse: collapse; }
jsfiddle
2.1m questions
2.1m answers
60 comments
57.0k users