Space between <td>. Why and how can I remove?
css, html, styles
Solution
Use cellspacing and cellpadding :
<table cellspacing="0" cellpadding="0">
</table>
Problem
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/