Created
August 27, 2020 08:58
-
-
Save igmoweb/03edd633090403aa57a8f20dd269fcf7 to your computer and use it in GitHub Desktop.
A very basic one
This file contains hidden or 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
<table> | |
<tr> | |
<th class="superhead">Spectrum</th> | |
<th class="superhead">Spectrum</th> | |
<th class="superhead">Spectrum</th> | |
</tr> | |
<tr> | |
<th>hsjflhewf jewh fkwefhdjf</th> | |
<th></th> | |
<th></th> | |
</tr> | |
<tr> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
</tr> | |
<tr> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
</tr> | |
<tr> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
</tr> | |
<tr> | |
<th>hsjflhewf jewh fkwefhdjf</th> | |
<th></th> | |
<th></th> | |
</tr> | |
<tr> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
</tr> | |
<tr> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
<td>hsjfhdjf</td> | |
</tr> | |
</table> | |
<style> | |
table { | |
border: 1px solid black; | |
border-collapse: collapse; | |
} | |
table td { | |
border: 1px solid black; | |
} | |
th { | |
background: blue; | |
} | |
table tr td:nth-child(2), | |
table tr th:nth-child(2), | |
table tr:first-child th:nth-child(2) { | |
border-left: 3px inset red; | |
border-right: 3px inset red; | |
} | |
table tr:first-child th:nth-child(2) { | |
border-top: 3px inset red; | |
} | |
table tr:last-child td:nth-child(2) { | |
border-bottom: 3px inset red; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment