回答編集履歴
1
クラス名を変更
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
こんな感じですかね? クラス名は好きなように変更してください。
|
1
|
+
こんな感じですかね? もしクラス名は好きなように変更してください。
|
2
2
|
|
3
3
|
[https://codepen.io/new1ro/pen/jOPYQBp](https://codepen.io/new1ro/pen/jOPYQBp)
|
4
4
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```HTML
|
8
8
|
|
9
|
-
<div class="
|
9
|
+
<div class="icon-close"></div>
|
10
10
|
|
11
11
|
```
|
12
12
|
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
```CSS
|
16
16
|
|
17
|
-
.
|
17
|
+
.icon-close {
|
18
18
|
|
19
19
|
position: relative;
|
20
20
|
|
@@ -24,9 +24,9 @@
|
|
24
24
|
|
25
25
|
}
|
26
26
|
|
27
|
-
.
|
27
|
+
.icon-close::before,
|
28
28
|
|
29
|
-
.
|
29
|
+
.icon-close::after {
|
30
30
|
|
31
31
|
content: "";
|
32
32
|
|
@@ -50,13 +50,13 @@
|
|
50
50
|
|
51
51
|
}
|
52
52
|
|
53
|
-
.
|
53
|
+
.icon-close::before {
|
54
54
|
|
55
55
|
transform: rotate(45deg);
|
56
56
|
|
57
57
|
}
|
58
58
|
|
59
|
-
.
|
59
|
+
.icon-close::after {
|
60
60
|
|
61
61
|
transform: rotate(-45deg);
|
62
62
|
|