前提・実現したいこと
fvの上に、.main-wrapper(テキスト)を載せたいのですが、表示されません。
原因と対処法を知りたいです。
ご教授よろしくお願いいたします。
該当のソースコード
HTML
1 <section id="fv"> 2 <div class="main-wrapper"> 3 <p class="en-title"></p> 4 <p class="ja-title"></p> 5 </div> 6 7 8 </section>
該当のソースコード
CSS
1#fv { 2 position: relative; 3 background-image: url(../img/fv-bgi_01@2x.jpg); 4 background-position: center; 5 background-size: cover; 6 height: 100vh; 7 /*height:100vw;*/ 8 min-height: 550px; 9 /*忘れ*/ 10 z-index: 0; 11} 12#fv .main-wrapper { 13 position: absolute; 14 color: #FFFFFF; 15 width: 100%; 16 height: 50%; 17 top: 0; 18 left: 0; 19 font-weight: bold; 20 display: block; 21 /*忘れ*/ 22 /*忘れ*/ 23 /*z-index: 1;*/ 24 z-index: 9; 25} 26#fv .en-title { 27 font-size: 7rem; 28} 29#fv .ja-title { 30 font-size: 4rem; 31}
試したこと
①一旦#fv画像を消してみる(下にあるかどうか確認するため)
→視覚的に文字は見えなかったが(背景色と同化しているため)、ディベロッパーツールなどで.main-wrapperが存在していることは確認済です。
②z-indexで要素の重なりを指定
→同じ指定しているとz-indexがきかないことがよくあるとのことだが、z-indexもpositionもきちんと親子要素に指定していると認識しています。
③参考記事を探す
https://www.netimpact.co.jp/diary/22704/
https://coliss.com/articles/build-websites/operation/css/4-reasons-z-index-isnt-working.html
https://saruwakakun.com/html-css/basic/z-index
https://teratail.com/questions/293337
補足情報(FW/ツールのバージョンなど)
OS:Windows
エディタ:Brackets
ブラウザ:クローム
回答1件
あなたの回答
tips
プレビュー