コーディングの練習をしています。
どう検証してみても分からないので教えてください...(>_<)
ブラウザ全画面100%の表示にすると、メイン画像の左側に余白がついてしまうのはなぜなのでしょう?
*リセットCSSはhtml5 doctorを使用しています。
HTML
1 2<div class="container"> 3 <header class="wrapper"> 4 </header> 5 6 <div class="mainimage"> 7 <img src="img/austin-distel-rxpThOwuVgE-unsplash.jpg" alt="メイン画像"> 8 <div class="inner"> 9 <h2>Customer Obsessed</h2> 10 <p> 11 テキストが入ります テキストが入ります テキストが入ります テキストが入ります 12 テキストが入ります テキストが入ります テキストが入ります テキストが入ります 13 テキストが入ります テキストが入ります テキストが入ります テキストが入ります 14 テキストが入ります テキストが入ります テキストが入ります テキストが入ります 15 </p> 16 </div> 17 </div> 18 19 <div class="contents wrapper"> 20 </div> 21 22</div> 23
CSS
1html{ 2 font-size: 62.5%; 3} 4 5body{ 6 font-family: Hiragino Kaku Gothic ProN; 7 color: #707070; 8 background-color:#ccc; 9 box-sizing: border-box; 10 list-style: none; 11} 12 13.container{ 14 width: 100%; 15 max-width: 1400px; 16 margin: 0 auto; 17} 18 19.wrapper{ 20 margin-left: 40px; 21 margin-right: 40px; 22} 23 24/* --------------------------------- 25 mainimage 26---------------------------------- */ 27.mainimage{ 28 height: 620px; 29} 30.mainimage img{ 31 width: 100%; 32 min-width: 1400px; 33 height: auto; 34 position: absolute; 35} 36.mainimage .inner{ 37 width: 650px; 38 position: relative; 39 top: 175px; 40 left: 400px; 41} 42.mainimage h2{ 43 color: #FFF; 44 font-size: 6.7rem; 45 font-weight: normal; 46 margin-bottom: 22px; 47} 48.mainimage p{ 49 color: #FFF; 50 font-size: 2.1rem; 51 width: 675px; 52 line-height: 180%; 53}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/13 18:34
2021/06/13 18:42
2021/06/13 18:53