Am trying to use CSS3 to set the cell-spacing and the cell-padding for my table since HTML5 doesn't support these attributes.
I have found many resources on the internet says that you should use border-spacing and padding using CSS.
Unfo. i tried all these tricks , but it seems that no thing changing at all. The spacing is very important because am including image structure on the different cell of the table.
So how i can solve it now ? plz need your help
#SearchTable
{
    border-collapse: collapse;
    padding:0px 0px 0px 0px;
}
#SearchTable td 
{
    padding:0;
    border-spacing:0px 0px; 
}
 
     
     
     
     
    