HTML/CSSを独学で学んでいる者です。
現在下記、画像の位置接待にてこづっています。
fotter直前に表示させたい画像なんですが、横幅いっぱいに表示されず、右側寄りで表示されてしまいます。
margin等も記載していないので、なぜこのように表示されていますのか見当すらつきません。
HTML
1<section class="section_wrapper"> 2 <div class="container_justcontinue"> 3 <h2 class="justcontinue_title">Just Continue</h2> 4 <p class="justcontinue_text"> 5 日々、学び続ける<br> 6 いつか、Webで世界を今より少しだけ<br> 7 よくするために<br> 8 でも、今は自分のために<br> 9 毎日少しずつ勉強する<br> 10 そんな私と共に学んでくれる方を募集しています 11 </p> 12 <form class="btn"> 13 <input type="submit" value="お問い合わせしてみる"> 14 </form> 15 </div> 16 </section>
CSS
1div.container_justcontinue { 2 width: 1366px; 3 height: 455px; 4 background-image: url("images/tim-bogdanov-4uojMEdcwI8-unsplash.png"); 5 background-size: cover; 6 background-position: center; 7 display: flex; 8 justify-content: center; 9 flex-direction: column; 10} 11 12h2.justcontinue_title { 13 color: white; 14 font-size: 36px; 15 font-weight: bold; 16 margin-bottom: 46px; 17 text-align: center; 18 19} 20 21p.justcontinue_text { 22 color: white; 23 font-size: 16px; 24 font-weight: bold; 25 text-align: center; 26 27} 28 29.btn { 30 width: 210px; 31 height: 54px; 32 border-radius: 5px; 33 background-color: #83032A; 34 color: white; 35 line-height: 54px; 36 font-size: 16px; 37 font-weight: bold; 38 margin-top: 48px; 39 text-align: center; 40 margin-left: auto; 41 margin-right: auto; 42} 43
お助けいただけると嬉しいです!
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/30 18:36
2021/04/30 18:45
2021/05/01 08:59