27 May 2010, 11:32am
Programming:
by

1 comment

NO Table Cell Spacing Please

Remove cell padding on a table you add the cellspacing attribute and set it to “0″. Is there a better way to do this with straight up CSS? Nothing seems to work…

<table id='my-favorite-table' cellspacing="0" >
...
  • admin

    via Ben Long

    instead of
    cellspacing=”0″

    you can enter in the css stylesheet
    border-spacing:0px;

    not sure if it works in IE :( though