前提・実現したいこと
該当のソースコード
HTML
1<main> 2<p class="july"><a href="#"><span class="large">7</span><span class="small">月の探訪</span></a></p> 3</main>
SCSS
1.july { 2 text-align: center; 3 line-height: 1; 4 a { 5 color: #707070; 6 font-weight: bold; 7 text-decoration: none; 8 border-bottom: 2px #707070 solid; 9 line-height: 1; 10 &:hover { 11 border: none; 12 } 13 span { 14 font-size: 24px; 15 } 16 .large { 17 font-size: 36px; 18 } 19 } 20 }
補足
aタグのtext-decorationだと、フォントサイズの違いから下線の太さも変わってしまうので、border-bottomで下線を作っています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/19 16:17