固定した要素のサイズは画面の大きさと一緒に変化するようにしました。ですが、画面の幅を変えると、固定した要素の周りに余白ができたり、画面から見切れたりしてしまいます。
html
1 <div class="header-contact"> 2 <a href="contact.html" class="cursor"> 3 <ul class="contact-links"> 4 <li>クリック</li> 5 </ul> 6 </a> 7 </div>
css
1.header-contact { 2 width: 15vw; 3 height: auto; 4 position: fixed; 5 z-index: 10; 6 bottom: 0; 7 right: 0; 8 background-image: url(img/contact-right.png); 9 background-repeat: no-repeat; 10 background-size: 100%; 11}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。