JesseBuesking
JesseBuesking

Reputation: 6586

Cross-browser removal of table cell padding/spacing

How does one remove that annoying cell spacing and/or padding in a table structure, using css? Double props if the solution works in IE7-9, Firefox, and Chrome!

enter image description here

Why must CSS be so difficult! It's maddening!

Upvotes: 2

Views: 1025

Answers (2)

Steve Adams
Steve Adams

Reputation: 2837

Normally, this is resolved using cellspacing: collapse; in your css rules for that table.

Upvotes: 3

lanzz
lanzz

Reputation: 43168

table { border-spacing: 0 } should do the trick.

Upvotes: 1

Related Questions