表題の通り、上部タイトル部分の画像を見ながら
テキスト部分の背景色を透過させたいという希望がありまして、実現せず、悩んでいます。
解決策を教えていただけると大変助かります。
##index.html
html
1<section class="maingra"> 2<h1 id="title"> 3 タイトル一行目<br> 4タイトル二行目<br> 5タイトル三行目<br> 6タイトル四行目</h1> 7 </section> 8 <section class="section01"> 9 <h2 class="h2_01">h2タイトル</h2> 10 <p class="section01_text">本文<br> 11本文<br> 12本文<br> 13<br> 14本文 15<br> 16<br> 17本文</p> 18 </section>
##style.css
css3
1.maingra{ 2 background-image:url(../images/main_bg.png); 3 background-repeat: no-repeat; 4background-attachment: fixed; 5 background-size: cover; 6 height: 834px; 7 background-color: #121212; 8 height: 900px; 9 10} 11#title{ 12 font-size:32px; 13 line-height: 2.4em; 14 color: #efefef; 15 letter-spacing: .15em; 16 padding-top:160px; 17 padding-left:220px; 18 padding-bottom:160px; 19} 20#title::before{ 21 display: block; 22 content:url(../images/logo.png); 23 left:-60px; 24 position: relative; 25 top:-10px; 26} 27.section01{ 28background: rgba(18,18,18,0.5); 29 z-index:-2; 30 31 position: relative; 32 width: 100%; 33 height:900px; 34 padding-top:20px; 35 padding-bottom:20px; 36} 37 38.h2_01{ 39 40 font-size:18px; 41 text-align: center; 42 color: #efefef; 43 letter-spacing: .15em; 44 position: relative; 45} 46.h2_01::before{ 47 display: block; 48 content:url(../images/h2_logo01.png); 49 position: relative; 50margin:20px auto 0 auto; 51 52} 53.h2_01::after{ 54 display: block; 55 content: ""; 56 width: 222px; 57 height: 2px; 58 background-color: #ebb261; 59 margin: 10px auto 0 auto; 60 61 62 63 64 65} 66.section01_text{ 67 width:408px; 68 margin:80px auto; 69 line-height: 2em; 70 text-align: justify; 71} 72
上記.section01の
background: rgba(18,18,18,0.5);
が透過せず、グレーのような色表現となってしまっております。
お知恵をお借りできたら幸いです。
どうぞよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/20 12:36