Last active
August 5, 2021 06:22
-
-
Save kenjisato/b8c3d14d20eaf11d5bc8238a97a61139 to your computer and use it in GitHub Desktop.
Bordered table CSS
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
<style type="text/css" rel="stylesheet"> | |
.bordered-table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
border:1px solid #000000; | |
} | |
.bordered-table th { | |
border:1px solid #000000; | |
} | |
.bordered-table td{ | |
border:1px solid #000000; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment