前提・実現したいこと 要素同士の重なりをなくしたい
画像の左の画像では"message-wrapper"とfooterが"lesson-wrapper"に重なってしまい、
footerの下に空白ができてしまっています。
右の画像のようにするにはどのようにするべきでしょうか。
ご回答よろしくお願いいたします。
HTML
1 <div class="lesson-wrapper"> 2 <div class="lesson-container"> 3 <div class="heading"> 4 <h2>Learn Where to Get Started!</h2> 5 </div> 6 <div class="lessons"> 7 <div class="lesson"> 8 <div class="lesson-icon"> 9 <img src="https://prog-8.com/images/html/advanced/html.png"> 10 <p class="lesson-title">HTML & CSS</p> 11 </div> 12 <p class="text-contents">ウェブページの作成に使用される言語です。HTMLとCSSを組み合わせることで、静的なページを作り上げることができます。</p> 13 </div> 14 ※途中略 15 16 </div> 17 </div> 18 <div class="clear"></div> 19 </div> 20 <div class="message-wrapper"> 21 <div class="message-container"> 22 <div class="heading"> 23 <h2>さぁ、あなたもProgateでプログラミングを学んでみませんか?</h2> 24 <h3>Let's learn to code, learn to be creative!</h3> 25 </div> 26 <span class="btn message">さっそく開発する</span> 27 </div> 28 </div> 29 30 <footer> 31 <div class="last-container"> 32 <img src="https://prog-8.com/images/html/advanced/footer_logo.png"> 33 <p>Learn to code, learn to be creative.</p> 34 </div> 35 36 </footer> 37 </body> 38</html>
CSS
1.lesson-icon p { 2 position: absolute; 3 top: 44%; 4 width: 100%; 5 color: white; 6} 7 8.text-contents { 9 width: 80%; 10 display: inline-block; 11 margin-top: 15px; 12 font-size: 13px; 13 color: #b3aeb5; 14} 15 16.heading h3 { 17 font-weight: normal; 18} 19 20.message-wrapper { 21 border-bottom: 1px solid #eee; 22 padding-bottom: 80px; 23 text-align: center; 24 clear:bottom; 25} 26 27.message { 28 padding: 15px 40px; 29 background-color: #5dca88; 30 cursor: pointer; 31 box-shadow: 0 7px #1a7940; 32} 33 34.message:active { 35 position: relative; 36 top: 7px; 37 box-shadow: none; 38} 39 40footer img { 41 width: 125px; 42} 43 44footer p { 45 color: #b3aeb5; 46 font-size: 12px; 47} 48 49footer { 50 padding-top: 30px; 51 padding-bottom: 20px; 52} 53.last-container{ 54 max-width:1170px; 55 padding:0px 15px; 56 width:100%; 57} 58 59.clear{ 60 clear:left; 61} 62
CSS
1/* タブレット向けレイアウト */ 2@media all and (max-width: 1000px) { 3 .container h1 { 4 font-size:32px ; 5 } 6 .heading h2{ 7 font-size:20px; 8 } 9 .lesson{ 10 width:50%; 11 } 12 .text-contents{ 13 padding-bottom:50px; 14 } 15 .clear{ 16 clear:left; 17 } 18} 19
回答1件
あなたの回答
tips
プレビュー