回答編集履歴
1
説明追記
test
CHANGED
@@ -9,3 +9,53 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
あと、`.box` は `.arrow_box` が正しいですね。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
吹き出しの矢印は下記のように修正してください。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
```css
|
20
|
+
|
21
|
+
.arrow_box::after {
|
22
|
+
|
23
|
+
border: solid transparent;
|
24
|
+
|
25
|
+
content:'';
|
26
|
+
|
27
|
+
height:0;
|
28
|
+
|
29
|
+
width:0;
|
30
|
+
|
31
|
+
pointer-events:none;
|
32
|
+
|
33
|
+
position:absolute;
|
34
|
+
|
35
|
+
border-color: #09529f;
|
36
|
+
|
37
|
+
border-top-width:24px;
|
38
|
+
|
39
|
+
border-bottom-width:24px;
|
40
|
+
|
41
|
+
border-left-width:23px;
|
42
|
+
|
43
|
+
border-right-width:23px;
|
44
|
+
|
45
|
+
margin-left: -23px;
|
46
|
+
|
47
|
+
border-top-color:#09529f;
|
48
|
+
|
49
|
+
border-left-color:transparent; /*追加*/
|
50
|
+
|
51
|
+
border-right-color:transparent; /*追加*/
|
52
|
+
|
53
|
+
border-bottom-color:transparent; /*追加*/
|
54
|
+
|
55
|
+
top:100%;
|
56
|
+
|
57
|
+
left:16%;
|
58
|
+
|
59
|
+
}
|
60
|
+
|
61
|
+
```
|