Skip to content

Instantly share code, notes, and snippets.

@codehwang
Created December 30, 2017 18:59
Show Gist options
  • Save codehwang/a7144e69432cbfd90b3f000f07764767 to your computer and use it in GitHub Desktop.
Save codehwang/a7144e69432cbfd90b3f000f07764767 to your computer and use it in GitHub Desktop.
table solid line for n-th child
table solid line for n-th child
table {
border: 2px solid !important;
height: 90%;
}
table tr:nth-child(3n) {
border-bottom: 2px solid !important;
}
table tr td:nth-child(3n) {
border-right: 2px solid !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment