webサイトの模写をしていたのですが、指定している画面幅より15px広くなってしまいます。
html
1 <header> 2 <div class="header-in"> 3 <div class="title"> 4 <div class="logo"> 5 <img src="img/isaralogo.png" alt="iSara"> 6 </div> 7 <div class="subtitle txtxs"> 8 <p>バンコクのノマドエンジニア育成講座</p> 9 </div> 10 <div class="headcontact"> 11 <div class="contactpc startpoint"> 12 <p class="texts">お問い合わせ / 資料請求はこちら</p> 13 </div> 14 <div class="contactsp startpoint"> 15 <img src="img/form.png" alt="資料請求"> 16 <a href="#">資料請求</a> 17 </div> 18 </div> 19 </div> 20 </div> 21 </header>
css
1header { 2 position: fixed; 3 z-index: 10; 4 width: 100%; 5 background-color: #fff; 6 max-width: 100%; 7} 8.title { 9 width: 1170px; 10 max-width: calc(100% - 20px); 11 height: 75px; 12 margin: 0 auto; 13 padding: 20px 0; 14 position: relative; 15} 16.logo { 17display: inline-block; 18margin-top: -6px; 19} 20.logo img { 21 width: 128px; 22} 23.subtitle { 24 position: relative; 25 bottom: -10px; 26} 27.subtitle p { 28 font-weight: 600; 29 margin-bottom: 0; 30} 31.title .logo, .subtitle { 32 display: inline-block; 33} 34@media screen and (max-width: 780px){ 35header { 36 height: 62px; 37 38 } 39 .title { 40 height: 62px; 41 padding: 0; 42 position: relative; 43 margin: 0; 44 } 45 .logo { 46 position: absolute; 47 top: 25px; 48 left: 10px; 49 margin-top: 0; 50 } 51 .logo img { 52 width: 90px; 53 } 54 .subtitle { 55 position: absolute; 56 top: 8px; 57 left: 10px; 58 font-size: 10px; 59 font-weight: 600; 60 letter-spacing: 0; 61 } 62 .contactpc { 63 display: none; 64 } 65 .contactsp { 66 display: block; 67 text-align: center; 68 position: absolute; 69 right: 0; 70 top: 0; 71 padding: 9px 11px; 72 background-color: #da6b64; 73 } 74 .contactsp a, .contactsp img { 75 display: block; 76 margin: auto; 77 } 78 .contactsp img { 79 width: 20px; 80 } 81 .contactsp a { 82 font-size: 12px; 83 84 } 85}
試しにメディアクエリ内のheaderに対して
css
1header { 2max-width: calc(100% - 15px); 3}
と無理やり縮めてみたところ、確かにヘッダー部分は他の要素と同じ幅になったのですが、やはり15px分のグレーの背景色が残ってしまいました。
ご協力お願いします。
Mac OS Mojave :10.14.6
chrome バージョン: 80.0.3987.149(Official Build) (64 ビット)
Visual Sutudio Code 1.42.1
を使っています。
回答2件
あなたの回答
tips
プレビュー