Last active
July 6, 2020 16:50
-
-
Save devig/42f4f44ce8875484f250dc9a4b67d65e to your computer and use it in GitHub Desktop.
Table example
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>Title</title> | |
</head> | |
<body> | |
<style type="text/css"> | |
TABLE { | |
width: 300px; /* Ширина таблицы */ | |
border-collapse: collapse; /* Убираем двойные линии между ячейками */ | |
} | |
tr { | |
padding: 3px; /* Поля вокруг содержимого таблицы */ | |
border: 1px solid black; /* Параметры рамки */ | |
} | |
TH { | |
background: #fff; /* Цвет фона */ | |
} | |
tbody > *:nth-last-of-type(2) { | |
border-bottom: 1px solid #62ade9!important; | |
} | |
.sum { | |
/*border-top: 1px solid #62ade9!important;*/ | |
border-bottom: 1px solid #62ade9!important | |
} | |
</style> | |
<table> | |
<tbody> | |
<tr bordercolor="#62ade9"> | |
<th>1</th><th>2</th> | |
</tr> | |
<tr> | |
<th>1</th><th>2</th> | |
</tr> | |
<tr> | |
<th>1</th><th>2</th> | |
</tr> | |
<tr class="sum"> | |
<th>1</th><th>2</th> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment