Not logged in - Login
< back

cellpadding=0 and cellspacing=0 replacement for html5

HTML 5 does not have the cellpadding or cellspacing attributes as part of the table element.

This is how to do the same using CSS / Stylesheets:

//CSS Replacement for cellpadding='0':
table
{ 
       border-spacing:0;
       border-collapse:collapse;
}

// CSS Replacement for cellspacing='0':
table td, table th
{
       padding: 0;
}