擬似要素を使うことにより背景画像を透過しましたがz-index 2が効かず、下の画像のようにpも薄くなってしまいます。
html
1<!-- ギャラリー --> 2 <article class="gal"> 3 <h1 class="title gal-title">Gallery</h1> 4 <div class="gal-container"> 5 <div class="gal-text"> 6 <h2>Art Gallery</h2> 7 <div class="gal-sentence"> 8 <h4>Eyes on our eyes</h4> 9 <p>Behavior as if it were necessary to do so.</p> 10 <p>I don't care about that, everyone swallows a star tattoo on her neck.</p> 11 <p>Is it okay? This is Xintiandi</p> 12 <p>I don't need a fleeting dream. Everything is as you wish.</p> 13 </div> 14 </div></div> 15 </article>
css
1* ギャラリー */ 2main .gal { 3 padding: 80px 0; 4 5} 6main .gal-container { 7 background-image: url(../images/main_03.jpg); 8 background-size: cover; 9 background-repeat: no-repeat; 10 object-fit: cover; 11 background-position: center center; 12 width: 100%; 13 height: 400px; 14 margin-top: 80px; 15 padding-top: 100px; 16 position: relative; 17 z-index: 1; 18} 19main .gal-container::after { 20 content: ""; 21 width: 100%; 22 height: 100%; 23 position: absolute; 24 top: 0; 25 left: 0; 26 bottom: 0; 27 right: 0; 28 background: rgba(255,255,255,0.6); 29 30} 31main .gal-container h2 { 32 text-align: center; 33 position: relative; 34 font-size: 1.8rem; 35 font-weight: 800; 36 z-index: 2; 37} 38main .gal-container h2::before, 39main .gal-container h2::after { 40 content: ""; 41 background-color: black; 42 display: inline-block; 43 content: ""; 44 vertical-align: 5px; 45 width: 32px; 46 height: 2px; 47} 48main .gal .gal-text { 49 z-index: 2; 50} 51main .gal .gal-sentence p { 52 z-index: 2; 53} 54 55main .gal-container h2::before { 56 margin-right: 8px; 57} 58main .gal-container h2::after { 59 margin-left: 8px; 60} 61 62
ためしたこと…文章全体を囲む要素とp単体にz-index 2を指定してみましたがやはり効きませんでした。
もし分かる方がいらっしゃればご教授願いたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/23 12:15