I am trying to achieve a very thin border for the entire table, similar to what is shown in the image above. However, my current solution is not working as expected and the table is not displaying any borders at all.
Below is the CSS I am using:
table {
border-width: thin;
border-spacing: 2px;
border-style: none;
border-color: black;
}