I am currently in the process of creating a table design for a web project, inspired by the example above.
Here is my attempt:
.table_RMA table{
width: 100%;
border-collapse: separate;
border-spacing: .5rem;
}
.table_RMA table thead{
color:white;
background: #1d5ba6;
border-radius: 9px;
box-shadow: -1px 1px 8px rgba(126, 114, 242, 0.58);
}
.table_RMA table tbody{
margin-top: 1rem;
}
.table_RMA table tbody tr td{
padding: 1rem;
text-align: center;
color:#1d5ba6;
background: white;
border-radius: 9px;
box-shadow: -1px 1px 8px rgba(126, 114, 242, 0.58);
}
However, I am facing an issue with getting the spacing of <td>
cells within the <tbody>
to match that of the <th>
cells in the <thead>
.