Skip to content
View raw
1
table {
2
width: 100%;
3
border-collapse: collapse;
4
font-family: monospace;
5
}
6
7
table th, table td {
8
border: 1px black;
9
padding: 0.5rem;
10
}
11
12
table th {
13
background-color: tomato;
14
font-weight: bold;
15
}
16
17
table tbody tr {
18
background-color: white;
19
}
20