前提・実現したいこと
liタグの中のaタグの範囲をliタグに合わせたいです。
scssで書いています。
ご教示いただけたら幸いです。
よろしくお願い致します。
該当のソースコード
html
1<ul class="header-sp-nav"> 2 <li class="header-sp-feature menu-list"><a href="#threeFeature">特徴</a></li> 3 <li class="header-sp-price menu-list"><a href="#price">価格</a></li> 4 <li class="header-sp-contact menu-list"><a href="#contact">お問い合わせ</a></li> 5 </ul>
scss
1 2/* style.scss */ 3 4$sspc: 1000px; 5 6@mixin sspc { 7 @media (max-width: ($sspc)) { 8 @content; 9 } 10} 11
scss
1 2/* header.scss */ 3 4@import 'style.scss'; 5 6.header-sp-nav { 7 8 display: none; 9 10 @include sspc { 11 12 width: 40%; 13 height: 100vh; 14 display: flex; 15 flex-direction: column; 16 background-color: rgba(0, 0, 0, 0.16); 17 transition: 0.3s; 18 position: fixed; 19 z-index: 20; 20 top: 94px; 21 right: -40%; 22 23 .menu-list { 24 25 list-style: none; 26 width: 70%; 27 height: 10%; 28 display: flex; 29 justify-content: center; 30 align-items: center; 31 border: 1px solid#333333; 32 margin: 40px 20px 20px 50px; 33 34 background-color: rgba(256, 256, 256, 0.9); 35 position: relative; 36 37 a { 38 color: #333333; 39 text-decoration: none; 40 font-weight: bold; 41 padding-bottom: 5px; 42 border-bottom: 2px solid #1be6f5; 43 display: block; 44 } 45 } 46 } 47}
試したこと
aタグにdisplay: block;を追加しましたが変わりませんでした。
positionでも試したのですが、範囲は上手くいってもaタグについている下線との相性が合いませんでした。
回答1件
あなたの回答
tips
プレビュー