17 lines
189 B
CSS
Executable File
17 lines
189 B
CSS
Executable File
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
th, td {
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
th {
|
|
background-color: #d2d2d2;
|
|
}
|
|
|
|
tr:nth-child(even) {background-color: #d2d2d2;}
|
|
|