どうしても表の角を丸めたい人のCSS
.table {
border: solid 1px rgb(225, 228, 232);
border-radius: 0.25rem;
overflow: hidden;
}
table {
table-layout: fixed;
width: 100%;
border: none;
border-collapse: collapse;
}
table td {
padding: 0.5rem;
border-right: solid 1px rgb(225, 228, 232);
border-bottom: solid 1px rgb(225, 228, 232);
}
table tr>td:last-child {
border-right-style: none;
}
table tr:last-child>td {
border-bottom-style: none;
}