Space between <td>. Why and how can I remove?

Kuba Żukowski picture Kuba Żukowski · Jul 24, 2013 · Viewed 91.9k times · Source

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

enter image description here

Why? :)

<td></td>

http://jsfiddle.net/VfSdV/

Answer

Brian Phillips picture Brian Phillips · Jul 24, 2013

Since cellspacing and cellpadding are no longer supported in HTML5, use the following CSS:

table {
  border-collapse: collapse;
}

jsfiddle