-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_style.css
84 lines (80 loc) · 1.74 KB
/
table_style.css
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
table.st-tbl1{
width: 1800px;
/* table-layout: fixed; */
border: 1px #555555 solid;
border-spacing: 0;
color: #fff;
text-align: left;
margin-left: 20px;
}
.st-tbl1 thead th {
/* padding: 3px; */
border: #555555 solid;
border-width: 0 0 1px 1px;
/*さそり座のラッキーカラー:空五倍子色にした*/
background: #9d896c;
font-weight: bold;
line-height: 180%;
text-align: center;
/* 縦スクロール時を固定 */
position: sticky;
top: 0;
/* tbody内のセルより手前に表示する */
z-index: 10;
}
.st-tbl1 th:first-child {
/* 横スクロールを固定 */
position: sticky;
left: 0;
min-width:180px;
/* background: #f1f1fd; */
}
.st-tbl1 thead th:first-child {
/* 一番左端のthead thが横スクロール時に隠れない様に */
z-index: 2;
min-width:180px;
/* background: #424242; */
}
.st-tbl1 thead th:nth-child(2) {
/* 横スクロールを固定 */
position: sticky;
left: 0;
/* background: #f1f1fd; */
}
.st-tbl1 thead th:nth-child(2) {
z-index: 5;
left:180px;
/* background: #424242; */
}
.st-tbl1 td:nth-child(1) {
/* 横スクロールを固定 */
position: sticky;
left: 0;
background: #9d896c;
min-width:300px;
}
.st-tbl1 td:nth-child(1) {
z-index: 2;
left:180px;
background: #9d896c;
min-width:300px;
}
.st-tbl1 th{
padding: 3px;
border: #555555 solid;
border-width: 0 0 1px 1px;
/*さそり座のラッキーカラー:空五倍子色にした*/
background: #9d896c;
font-weight: bold;
line-height: 180%;
text-align: center;
}
.st-tbl1 td{
border: 1px #555555 solid;
border-width: 0 0 1px 1px;
color: #030303;
border-collapse: collapse;
text-align: center;
padding: .2rem .5rem;
font-weight: normal;
}