I have following table:
<table>
<tr role="row" class="even">
<td>Other Color</td>
<td class="Green">Green<td/>
</tr>
</table>
and want to draw green circle in last column. CSS:
.Green{
font-size:0px;
border-radius: 50%;
width: 50px;
height: 50px;
display:inline-block;
background: green!important;
border:solid black 3px;}
td {
border:solid black 3px;}
I need to draw borders for the cell, but when doing so it is drawing border around the circle, not the cell.
https://fiddle.jshell.net/Ulee/up3a5fp4/
any tip?
tdand make it as the circle if you don't want the cell to be a circle.