I am working on a GUI representation table that features cells with spheres in the corner. Additionally, the footer contains a plus symbol (font-awesome icon) in the corner. I have attempted to place the sphere so that it aligns only inside the cell.
Here is the target figure I aim to achieve:
https://i.sstatic.net/SLSL0.png
Please assist me in resolving this issue
.damage-chart{
border: 3px solid #dddddd;
width: 80%;
}
.damage-chart td{
border: 2px solid #f3f3f3;
height: 30px;
width: 11%;
}
.damage-chart, .damage-chart td{
border-top: none;
border-right: none;
}
<table class="damage-chart">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td style="width: 3%"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td style="width: 3%"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td style="width: 3%"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td style="width: 3%"></td>
</tr>
</table>