I create a table having circles in TDs. Please take a look at this sample at HERE
I want to get spaces in between these circles by trying to add more style in CSS
border-spacing: 10px;
border-collapse: separate;
but somehow it doesn't show up spaces. Please help!
Below is the code:
table tr td{
background-color:green;
border: none;
border-radius: 50%;
width: 45px;
height: 45px;
border-spacing: 10px;
border-collapse: separate;
}
<table>
<tr>
<td>Test</td>
<td>Test</td>
<td>Test</td>
<td>Test</td>
</tr>
<tr>
<td>Test</td>
<td>Test</td>
<td>Test</td>
<td>Test</td>
</tr>
</table>