22 lines
248 B
CSS
22 lines
248 B
CSS
tr:nth-child(3n+1) td {
|
|
border-top: 1px dashed;
|
|
}
|
|
|
|
td {
|
|
border-right: 1px dashed;
|
|
}
|
|
|
|
tr:nth-child(n-1) td {
|
|
border-left: 1px dashed;
|
|
}
|
|
|
|
|
|
tr:last-child td {
|
|
border-bottom: 1px dashed;
|
|
}
|
|
|
|
#page-content{
|
|
background-color: white;
|
|
color: black;
|
|
}
|