以下の記事を読み、テーブル内にモーダルを設置しました。
bootstrap4 modal
PC表示では問題なく動作するのですが、スマートフォンで確認すると、画面全体が暗くなって動作しなくなります。
公式ページのモーダルはスマートフォンサイトでも問題なく動作するので、おそらくテーブル内にモーダルを設置した事が原因なのかなと思っています。
どなたか改善方法を教えていただけないでしょうか?
よろしくお願い致します。
html
1<table id="table" width="100%" class="table able-sm"> 2 <thead class="thead-dark"> 3 <tr> 4 <th class="text-center">日付</th> 5 <th class="text-center">モーダル</th> 6 </thead> 7 <tbody> 8 <tr class="odd gradeX text-center"> 9 <td class="text-center" width="70">2020年11月12日</td> 10 11 <td class="text-center" width="70"> 12 <!-- Button trigger modal --> 13 <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong"> 14 Launch demo modal 15 </button> 16 </td> 17 18 <!-- Modal --> 19 <div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true"> 20 <div class="modal-dialog" role="document"> 21 <div class="modal-content"> 22 <div class="modal-header"> 23 <h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5> 24 <button type="button" class="close" data-dismiss="modal" aria-label="Close"> 25 <span aria-hidden="true">×</span> 26 </button> 27 </div> 28 <div class="modal-body"> 29 ... 30 </div> 31 <div class="modal-footer"> 32 <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> 33 <button type="button" class="btn btn-primary">Save changes</button> 34 </div> 35 </div> 36 </div> 37 </div> 38 </tr> 39 </tbody> 40 </table>
回答1件
あなたの回答
tips
プレビュー