質問内容 : z-indexを用いてimgの重なり順を一番下にしたいのですが、
うまくいかず、h2やpの上にきてしまっている状況をなおしたい。
利用環境 : Brackets最新
試したこと : z-indexの値を0にし、position:absoluteを指定、
親要素にposition:relativeを指定しました。
※現状のコードでサイト表示させた際の
画面サンプルを添付いたしました。
また、以下HTMLとCSSの質問箇所コードを表記しました。
お手数ですが、ご回答いただければ幸いです。
よろしくお願いいたします。
HTML
1<div class="message-wrapper"> 2 <div class="container"> 3 <div class="messages"> 4 <h2>●○○○○<br>●○○○○●○○○○</h2> 5 <p>●○○○○<br>●○○○○●○○○○</p> 6 <img class="point01" src="●○○○○"> 7 </div> 8 </div> 9 </div>
CSS
1body { 2 margin: 0; 3 font-family: "Hiragino Mincho ProN"; 4} 5a { 6 text-decoration: none; 7} 8.container { 9 max-width: 1170px; 10 width: 100%; 11 margin: 0 auto; 12 font-weight: normal; 13} 14 15.message-wrapper { 16 padding-top: 100px; 17} 18.messages { 19 text-align: center; 20 color: forestgreen; 21 position: relative; 22} 23.point01 { 24 width: 300px; 25 position: absolute; 26 top: 110px; 27 left: 100px; 28 z-index: 0; 29} 30.messages h2 { 31 line-height: 50px; 32 font-weight: bold; 33 padding-top: 100px; 34 font-size: 26px; 35 letter-spacing: 8px; 36} 37.messages p { 38 letter-spacing: 5px; 39 font-size: 14px; 40 color: dimgrey; 41 line-height: 30px; 42}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。