回答編集履歴

1

成型

2021/11/06 10:50

投稿

angel-sun
angel-sun

スコア64

test CHANGED
@@ -2,13 +2,39 @@
2
2
 
3
3
 
4
4
 
5
- ハンバーガーメニューのある<div id="nav-drawer"/>が重なりとして、
5
+ ハンバーガーメニューのある
6
6
 
7
- aboutの画像(about-img)とlocationの画像(location-img)の<div class="about-img"/><div class="location-img"/>の領域の下にある為、
7
+ ```
8
8
 
9
- クリック等のイベントが上にある<div class="about-img"/><div class="location-img"/>で止まってしまっています。
9
+ <div id="nav-drawer"/>
10
10
 
11
+ ```
12
+
13
+ が重なりとして、
14
+
15
+ aboutの画像(about-img)とlocationの画像(location-img)
16
+
17
+ ```
18
+
19
+ <div class="about-img"/>
20
+
21
+ <div class="location-img"/>
22
+
23
+ ```
24
+
25
+ の領域の下に位置する為、
26
+
27
+
28
+
29
+ クリック等のイベントが、重なりとして上にある
30
+
31
+ <div class="about-img"/><div class="location-img"/>
32
+
33
+ で止まってしまっています。
34
+
35
+
36
+
11
- これは、background-imageを指定しているためにハンバーガーメニューの方が上にあるように見えているだけで、実際には<div class="about-img"/><div class="location-img"/>の方が上です。
37
+ これは、background-imageを指定しているためにハンバーガーメニューの方が上にあるように見えているだけで、実際には<div class="about-img"/><div class="location-img"/>の方が上である為です。
12
38
 
13
39
 
14
40