-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
122 lines (115 loc) · 2.16 KB
/
table.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap, Kamonlojn</title>
<!-- Bootstrap -->
<link href="assets/css/boostrap/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
.table__fixed-header {
width: 100%;
position: relative;
}
.table__fixed-header * {
display: block;
}
.table__fixed-header>thead>tr:after,
.table__fixed-header>tbody>tr:after {
content: ' ';
display: block;
visibility: hidden;
clear: both;
}
.table__fixed-header>thead {
overflow-y: scroll;
}
.table__fixed-header>tbody {
overflow-y: scroll;
max-height: 200px;
}
.table__fixed-header>thead>tr>th,
.table__fixed-header>tbody>tr>td {
float: left;
width: 25%;
}
</style>
</head>
<body>
<h3> TABLE </h3>
<table class="table table-striped table__fixed-header">
<thead>
<tr>
<th>#</th>
<th>First</th>
<th>Last</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Big</td>
<td>Boy</td>
<td>100</td>
</tr>
<tr>
<td>2</td>
<td>Jayce</td>
<td>Yoch</td>
<td>50</td>
</tr>
<tr>
<td>3</td>
<td>Pol</td>
<td></td>
<td>50</td>
</tr>
<tr>
<td>4</td>
<td>Due</td>
<td>Suriya</td>
<td>1000</td>
</tr>
<tr>
<td>5</td>
<td>Big</td>
<td>Boy</td>
<td>100</td>
</tr>
<tr>
<td>6</td>
<td>Jayce</td>
<td>Yoch</td>
<td>50</td>
</tr>
<tr>
<td>7</td>
<td>Pol</td>
<td></td>
<td>50</td>
</tr>
<tr>
<td>8</td>
<td>Due</td>
<td>Suriya</td>
<td>1000</td>
</tr>
<tr>
<td>9</td>
<td>Pol</td>
<td></td>
<td>50</td>
</tr>
<tr>
<td>10</td>
<td>Due</td>
<td>Suriya</td>
<td>1000</td>
</tr>
</tbody>
</table>
</body>
</html>