質問編集履歴
1
あ
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
画面右側
|
1
|
+
画面右側に固定したドロップダウンが開かない。
|
test
CHANGED
@@ -1,24 +1,38 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
|
+
|
3
|
+
画面右側に固定したドロップダウンが開けない。
|
4
|
+
|
5
|
+
カーソルをあてても反応がない。
|
2
6
|
|
3
7
|
|
4
8
|
|
5
|
-
|
9
|
+
### 該当コード
|
6
|
-
|
7
|
-
rowを3,6,3でわけていますが、右側を固定する方法がわからずにいます。
|
8
|
-
|
9
|
-
fixed-topやposition-fixedはデフォルトで左側によせているみたいなので、後からcssで
|
10
10
|
|
11
11
|
```
|
12
12
|
|
13
|
+
<div class="dropdown d-block d-md-none">
|
14
|
+
|
15
|
+
<button class="fixed dropdown-toggle btn btn-white" data-toggle="dropdown">ランキング</button>
|
16
|
+
|
17
|
+
<div class="dropdown-menu">
|
18
|
+
|
19
|
+
<a class="dropdown-item" href="/pop_music">アプリ内人気音楽</a>
|
20
|
+
|
21
|
+
<a class="dropdown-item" href="https://recochoku.jp/ranking/single/daily?affiliate=4410101009">レコチョクランキング</a>
|
22
|
+
|
23
|
+
<a class="dropdown-item" href="https://music.dmkt-sp.jp/rank/single/daily/">dミュージックランキング</a>
|
24
|
+
|
13
|
-
|
25
|
+
</div>
|
26
|
+
|
27
|
+
</div>
|
14
28
|
|
15
29
|
```
|
16
30
|
|
17
|
-
|
31
|
+
```css
|
18
32
|
|
33
|
+
.fixed{position:fixed; top:0; right:0;}
|
19
34
|
|
20
|
-
|
35
|
+
```
|
21
|
-
|
22
36
|
|
23
37
|
|
24
38
|
|