下記の画像の様に
水色の背景を画像の上に
少し重ねて表示する方法を教えていただきたいです。
HTML
1<section class="features"> 2 <section> 3 <div class="pic"> 4 <img src="http://demo.themegraphy.com/write-ja/wp-content/uploads/sites/14/2018/06/cropped-nicole-honeywill-730102-unsplash.jpg"> 5 </div> 6 <div class="info"> 7 <div class="item-title"> 8 <span>TITLE</span> 9 <p>タイトル</p> 10 </div> 11 <div class="sub-title"> 12 <p>テキストテキストテキストテキストテキストテキストテキストテキスト</p> 13 </div> 14 </div> 15 </section> 16 17 <section> 18 <div class="pic"> 19 <img src="http://demo.themegraphy.com/write-ja/wp-content/uploads/sites/14/2018/06/cropped-nicole-honeywill-730102-unsplash.jpg"> 20 </div> 21 <div class="info"> 22 <div class="item-title"> 23 <span>TITLE</span> 24 <p>タイトル</p> 25 </div> 26 <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</p> 27 </div> 28 </section> 29 </section>
css
1.features section{margin-bottom: 50px;} 2 3.features section { 4 display: flex; 5 justify-content: space-between; 6} 7 8.features section:nth-child(even) { 9 flex-direction: row-reverse; 10} 11 12.features .pic { 13 width: 100%; 14} 15 16.features .info { 17 /* width: calc(50% - 32px); */ 18 width: calc(70%); 19 /* width: 55%; */ 20} 21 22.pic img { 23 left: 0; 24} 25 26 27.sub-title{background-color: #f0fafc; padding-bottom: 250px; padding-top:130px; } 28コード
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/08 22:30
2020/07/09 03:36