why doesn't table cellspacing work?

Samin picture Samin · May 30, 2013 · Viewed 12.5k times · Source

I have tried every bit of tricks to make cellspacing:0; cellpadding:0; described in a css file to work but somehow the table doesn't accept this property but accepts while described inline as <table cellspacing="0" cellpadding="0">. That's painstaking.

Answer

PoseLab picture PoseLab · May 30, 2013

Check this answer How to set cellpadding and cellspacing in CSS?

table { 
    border-spacing:0;
    border-collapse:collapse;
}