Last active
August 3, 2020 03:43
-
-
Save kenjisato/017b3edd3bbeaadb35b8409372401690 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bordered-table table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
border:1px solid rgba(0, 0, 0, 1); | |
} | |
.bordered-table th { | |
border:1px solid rgba(0, 0, 0, 1); | |
} | |
.bordered-table tbody tr:nth-child(odd) { | |
background-color: rgba(242,242,242, 0.8); | |
} | |
.bordered-table td{ | |
border:1px solid rgba(0, 0, 0, 1); | |
padding: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment