CSS - Table

Here’s a sample of some code for a table in CSS.

1
2
3
4
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}