-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path031.Table表格内容滑动.html
119 lines (107 loc) · 3.17 KB
/
031.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/global.css">
<style>
.m-table {
display: inline-flex;
flex-direction: column;
width: 200px;
}
.m-table table {
width: 200px;
text-align: center;
}
.scroll {
max-height: 100px;
overflow: auto;
}
.scroll::-webkit-scrollbar {
width: 1px;
height: 1px;
color: #dddddd;
}
.scroll::-webkit-scrollbar-track {
border-radius: 12px;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
background-color: #dddddd;
}
.scroll::-webkit-scrollbar-thumb {
border-radius: 1px;
background-color: #ff5153;
}
.scroll td {
width: 25%;
}
</style>
</head>
<body>
<div class="m-table">
<div>
<table>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>身高</th>
<th>体重</th>
</tr>
</thead>
</table>
</div>
<div class="scroll">
<table>
<tbody>
<div class="tbody">
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
<tr>
<td>张三</td>
<td>20</td>
<td>179</td>
<td>70</td>
</tr>
</div>
</tbody>
</table>
</div>
</div>
</body>
</html>