When I try to round each number in html tables,I apply outline-offset
.
It seems the shape is not rounded.
Are there any method for round shape and rounded by aqua
?
Thanks
.color {
background-color: rgb(0,255,0);
border-radius: 10px;
outline: 3px solid aqua;
outline-offset: -3px;
}
<table>
<tr>
<td class=color>1</td>
<td class=color>2</td>
<td class=color>3</td>
</tr>
</table>