前提・実現したいこと
ページの仕様上、java・jqueryを使えないため
cssとhtmlのみでモーダルウィンドウのコードをかいており
サイトに実装するまえはちゃんと反映されます。
しかし実際にページに実装すると、モーダルウィンドウがひらかず
同ページの一番上(ヘッダー部分)に飛ばされてしまいます。
ECショップなので、大元となる要素があり
商品ページの一部分に以下ソースコードを記載をしようとしています。
他の要素にひっぱられてしまっているのでしょうか?
教えて頂けますと幸いです。
該当のソースコード
<!DOCTYPE html> <html> <head> <style> .modal-wrapper { z-index: 999; position: fixed; top: 0; right: 0; bottom: 0; left: 0; padding: 40px 10px; text-align: center } .modal-wrapper:not(:target) { opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; } .modal-wrapper:target { opacity: 1; visibility: visible; transition: opacity .4s, visibility .4s; } .modal-wrapper::after { display: inline-block; height: 100%; margin-left: -.05em; vertical-align: middle; content: "" } .modal-wrapper .modal-window { box-sizing: border-box; display: inline-block; z-index: 20; position: relative; width: 70%; max-width: 600px; padding: 30px 30px 15px; border-radius: 2px; background: #fff; box-shadow: 0 0 30px rgba(0, 0, 0, .6); vertical-align: middle } .modal-wrapper .modal-window .modal-content { max-height: 80vh; overflow-y: auto; text-align: left } .modal-overlay { z-index: 10; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0, 0, 0, .8) } .modal-wrapper .modal-close { z-index: 20; position: absolute; top: 0; right: 0; width: 35px; color: #95979c !important; font-size: 20px; font-weight: 700; line-height: 35px; text-align: center; text-decoration: none; text-indent: 0 } .modal-wrapper .modal-close:hover { color: #2b2e38 !important } table.table2 { border-collapse : collapse; } td.td1 { text-align:left; font-weight:lighter; border-width: 0px 0px 1px 0px; border-color: #f0f0f0; border-style: solid; padding: 20px 20px 20px 0px; margin: 20px 20px 20px 0px; border-top: none; } </style> </head> <body> <a href="#modal-01"> <table class="table2" style="width: 100%;"> <tbody> <tr> <td class="td1">>>Fitting guide</td> </tr> </tbody> </table> </a> <div class="modal-wrapper" id="modal-01"> <a href="#!" class="modal-overlay"></a> <div class="modal-window"> <div class="modal-content"> <img src="画像" width="100%"> </div> <a href="#!" class="modal-close">×</a> </div> </div> </body> </html>
あなたの回答
tips
プレビュー