Skip to content

Instantly share code, notes, and snippets.

@kenjisato
Last active August 5, 2021 06:22
Show Gist options
  • Save kenjisato/b8c3d14d20eaf11d5bc8238a97a61139 to your computer and use it in GitHub Desktop.
Save kenjisato/b8c3d14d20eaf11d5bc8238a97a61139 to your computer and use it in GitHub Desktop.
Bordered table CSS
<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