-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0350_table_color.html
64 lines (64 loc) · 2.22 KB
/
0350_table_color.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!-- テーブル - 色づけ -->
<!-- th や td に色を指定できる -->
<!DOCTYPE html>
<html lang="ja">
<html>
<head>
<meta charset="UTF-8" />
<link href="assets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
<link href="assets/bootstrap_table_colors.css" media="screen" rel="stylesheet" type="text/css" />
<script src="assets/jquery.js" type="text/javascript"></script>
<script src="assets/coffee-script.js" type="text/javascript"></script>
<script src="assets/jquery.tablesorter.min.js" type="text/javascript"></script>
<script type="text/coffeescript">
$ ->
$(".table").tablesorter()
</script>
</head>
<body>
<div class="container">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th class="">していなし</th>
<th class="blue">あお</th>
<th class="green">みどり</th>
<th class="red">あか</th>
<th class="yellow">きいろ</th>
<th class="orange">おれんじ</th>
<th class="purple">むらさき</th>
</tr>
</thead>
<tbody>
<tr>
<td class="blue">あお</td>
<td class="green">みどり</td>
<td class="red">あか</td>
<td class="yellow">きいろ</td>
<td class="orange">おれんじ</td>
<td class="purple">むらさき</td>
<td class="">していなし</td>
</tr>
<tr>
<td class="green">みどり</td>
<td class="red">あか</td>
<td class="yellow">きいろ</td>
<td class="orange">おれんじ</td>
<td class="purple">むらさき</td>
<td class="">していなし</td>
<td class="blue">あお</td>
</tr>
<tr>
<td class="red">あか</td>
<td class="yellow">きいろ</td>
<td class="orange">おれんじ</td>
<td class="purple">むらさき</td>
<td class="">していなし</td>
<td class="blue">あお</td>
<td class="green">みどり</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>