Making cell space color "black"

<html>
<head></head>
<body>

<table cellpadding='10' cellspacing='2' border='1' bordercolor='black'>

<tr>
<td width='100'>1</td>
<td width='100'>2</td>
<td width='100'>3</td>
</tr>

<tr>
<td width='100'>4</td>
<td width='100'>5</td>
<td width='100'>6</td>
</tr>

</table>

</body>
</html>

I have the code above.
The result of the code produces white cellspacing among cells.

I like to make the white cell spaces into black cell spaces.

<table background=“#000000”>

Try that.

<html>
<head>
[b]<style type="text/css">
table {
 color:black; background-color: [COLOR=Blue]blue[/COLOR];
 border: 2px solid [COLOR=Red]red[/COLOR];
  }
table td {
 color:white; background-color: black;
 border: 2px solid [COLOR=Yellow]yellow[/COLOR];
  }
</style>[/b]
</head>
<body>

<table>
<tr>
<td width='100'>1</td>
<td width='100'>2</td>
<td width='100'>3</td>
</tr>
<tr>
<td width='100'>4</td>
<td width='100'>5</td>
<td width='100'>6</td>
</tr>
</table>

</body>
</html>

Thank you.R937, here in this HTML forum like mySQL forum and coldFusion forum, too.