Skip to content

Instantly share code, notes, and snippets.

@devig
Last active July 6, 2020 16:50
Show Gist options
  • Save devig/42f4f44ce8875484f250dc9a4b67d65e to your computer and use it in GitHub Desktop.
Save devig/42f4f44ce8875484f250dc9a4b67d65e to your computer and use it in GitHub Desktop.
Table example
<!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