回答編集履歴
1
コード修正
test
CHANGED
@@ -14,13 +14,17 @@
|
|
14
14
|
|
15
15
|
padding: 1em;
|
16
16
|
|
17
|
+
}
|
18
|
+
|
19
|
+
table tr {
|
20
|
+
|
21
|
+
display: block;
|
22
|
+
|
17
23
|
position: relative;
|
18
24
|
|
19
25
|
}
|
20
26
|
|
21
|
-
|
22
|
-
|
23
|
-
tr::after {
|
27
|
+
table tr::after {
|
24
28
|
|
25
29
|
content: "";
|
26
30
|
|
@@ -28,7 +32,7 @@
|
|
28
32
|
|
29
33
|
width: 100%;
|
30
34
|
|
31
|
-
height:
|
35
|
+
height: 1px;
|
32
36
|
|
33
37
|
position: absolute;
|
34
38
|
|
@@ -40,14 +44,10 @@
|
|
40
44
|
|
41
45
|
}
|
42
46
|
|
43
|
-
|
44
|
-
|
45
47
|
th {
|
46
48
|
|
47
49
|
width: 5em;
|
48
50
|
|
49
51
|
}
|
50
52
|
|
51
|
-
|
52
|
-
|
53
53
|
```
|