Created
June 9, 2022 14:36
-
-
Save ivanberry/5d7ec73a8edc0272af672489bbb51f96 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Normal</title> | |
<style> | |
.styled-table { | |
border-collapse: collapse; | |
margin: 25px 0; | |
font-size: 0.9em; | |
font-family: sans-serif; | |
min-width: 400px; | |
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); | |
} | |
.styled-table thead tr { | |
background-color: #009879; | |
color: #ffffff; | |
text-align: left; | |
} | |
.styled-table th, | |
.styled-table td { | |
padding: 12px 15px; | |
} | |
.styled-table tbody tr { | |
border-bottom: thin solid #dddddd; | |
} | |
.styled-table tbody tr:nth-of-type(even) { | |
background-color: #f3f3f3; | |
} | |
.styled-table tbody tr:last-of-type { | |
border-bottom: 2px solid #009879; | |
} | |
.styled-table tbody tr.active-row { | |
font-weight: bold; | |
color: #009879; | |
} | |
</style> | |
</head> | |
<body> | |
<table class="styled-table"> | |
<thead> | |
<tr> | |
<th>width</th> | |
<th>height</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>123</td> | |
<td>456</td> | |
</tr> | |
<tr class="active-row"> | |
<td>1234</td> | |
<td>5150</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment