I was wondering if cell-spacing is actually available in CSS?
I am currently using the following CSS code to display a table and the spacing between each cell seems to be 2px, not 1px as specified in the table attribute. Is there any other way besides forcing each table with the tables html cellspacing attribute, if cell-spacing does not work in CSS?
table
{
margin: 0px;
color: #0000CC;
background-color:#6666FF;
cell-spacing: 1px;
}
td
{
background-color:#FFFFCC;
color: #0000CC;
font-size: 8pt;
font-family: "Arial, Helvetica, sans-serif";
padding: 2px;
}
Start Free Trial