Created
January 31, 2018 11:44
-
-
Save xhiroga/5cdda245670ebde321b92b83a99ae4e2 to your computer and use it in GitHub Desktop.
1行が2段組でも縞々に表示するテーブルのサンプル
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> | |
<head> | |
<title>1行が2段組のテーブルを縞々に表示する</title> | |
<style type="text/css"> | |
.table-striped-2span tbody tr:nth-of-type(4n+1), .table-striped-2span tbody tr:nth-of-type(4n+2) { | |
background-color: #c0c0c0; | |
} | |
</style> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"> | |
<link rel="stylesheet" href="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-beta.1.css" type="text/css"> </head> | |
</head> | |
<body> | |
<div class="container"> | |
<table class="table table-striped-2span"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>First Name</th> | |
<th>Last Name</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td rowspan=2>アメリカ</td> | |
<td>ドナルド</td> | |
<td>トランプ</td> | |
</tr> | |
<tr> | |
<td>Donald</td> | |
<td>Trump</td> | |
</tr> | |
<tr> | |
<td rowspan="2">ドイツ</td> | |
<td>アンゲラ</td> | |
<td>メルケル</td> | |
</tr> | |
<tr> | |
<td>Angela</td> | |
<td>Merkel</td> | |
</tr> | |
<tr> | |
<td rowspan="2">日本</td> | |
<td>シンゾウ</td> | |
<td>アベ</td> | |
</tr> | |
<tr> | |
<td>晋三</td> | |
<td>安倍</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment