いつもお世話になっております。
現在独学でBootstrapを参考してHPを制作しています。
表題の通り、モバイル版にロゴが伸びて表示されます。
モバイル版にPC版の幅と画面の幅を合わせるにはどこに修正したら良いか教授いただきたいです。
HTML
1 <section id="hero"> 2 <div class="hero-container"> 3 <a href="index.html" class="hero-logo" data-aos="zoom-in"> 4 <img src="assets/img/logo.png" alt=""></a> 5 </div> 6 </section>
CSS
1#hero { 2 width: 100%; 3 height: 100vh; 4 background: url("../img/hero-bg.png"); 5 position: relative; 6} 7 8#hero .hero-container { 9 position: absolute; 10 bottom: 0; 11 top: 0; 12 left: 0; 13 right: 0; 14 display: flex; 15 justify-content: center; 16 align-items: center; 17 flex-direction: column; 18 text-align: center; 19 padding: 0 15px; 20} 21 22#hero .hero-logo { 23 margin-bottom: 30px; 24} 25 26@media (min-width: 1024px) { 27 #hero { 28 background-attachment: fixed; 29 } 30}
回答1件
あなたの回答
tips
プレビュー