質問失礼します!
現在独学でHTML/CSSを勉強中で、色々検索し試してみても解決しない事があります。
模写ではないので、回答がないので苦戦しております。
下記、送信ボタン(オレンジ色”ReadMore”)を青枠の中に入れて、文章の下に反映させたいです。
青枠からmargin-bottom: 98px; margin-right: 241px;にしたいのです。
特に送信ボタンのCSSはいじっていないし、HTMLも問題なくかけていると思っているのですが、、、
どのように修正したら、反映できるのかお教えください!
HTML
1<div id="main_wrapper"> 2 <div id="main_image"></div> 3 <div id="introduction"> 4 <h2>Feature</h2> 5 <div id="introduction_flex"> 6 <img src="./sample.png" alt="働く女性"> 7 <div id="feature_intro"> 8 <h3>What is “Coding Basics”?</h3> 9 <p> 10 Lorem ipsum dolor sit amet, consectetur adipiscing elit, 11 sed do eiusmod tempor incididunt ut labore et dolore 12 magna aliqua. Ut enim ad minim veniam, quis nostrud 13 exercitation ullamco laboris nisi ut aliquip ex ea. 14 <br> 15 <br> 16 commodo consequat. Duis aute irure dolor in 17 reprehenderit in voluptate velit esse cillum dolore eu. 18 </p> 19 <div id="button"> 20 <input type="submit" class="btn" value="Read More"> 21 </div> 22 </div> 23 </div> 24 </div> 25 </div> 26 <footer> 27 <div id="footer_inner"> 28 <img src="./LOGO.png"> 29 <p>© 2020 LOGO All rights reserved.</p> 30 </div> 31 </footer>
CSS
1div#main_image { 2 width: 100%; 3 height: 603px; 4 background: url(./fv.png) no-repeat center; 5 margin-bottom: 0; 6} 7 8div#introduction { 9 width: 1000px; 10 height: 518px; 11 border: 4px solid blue; 12 margin: 0 auto; 13 margin-bottom: 26px; 14} 15 16div#introduction h2 { 17 color: black; 18 font-size: 32px; 19 font-weight: bold; 20 padding-top: 40px; 21 padding-bottom: 42px; 22 margin-left: 442px; 23 margin-right: 442px; 24 25} 26 27div#introduction_flex { 28 display: flex; 29 justify-content: space-between; 30} 31 32div#introduction_flex img { 33 width: 480px; 34 height: 329px; 35 margin-left: 20px; 36 margin-bottom: 71px; 37} 38 39div#feature_intro { 40 width: auto; 41 height: auto; 42 margin-right: 44px; 43} 44 45div#feature_intro h3 { 46 font-size: 32px; 47 font-weight: bold; 48 margin-left: 44px; 49} 50 51div#feature_intro p { 52 width: 394px; 53 height: 161px; 54 font-size: 16px; 55 margin-top: 30px; 56 margin-left: 44px; 57 margin-bottom: 175px; 58 line-height: 24px; 59 60} 61 62div#button { 63 margin-bottom: 98px; 64 margin-right: 241px; 65 66} 67 68 69div#button input.btn { 70 font-size: 16px; 71 font-weight: bold; 72 line-height: 24px; 73 background-color: #EFA358; 74 width: 197px; 75 height: 47px; 76 border-radius: 10px; 77 color: white; 78 padding: auto; 79 80}
回答1件
あなたの回答
tips
プレビュー