下記、上のCSSで【aタグ】全体に下線をつけるようにしています。
下側のCSS【return-top】では、下線をつけないようにしたいです。
すべてのaタグにはクラスがついていません。
CSS
1a{ 2color: #707070; 3text-decoration: none; 4position: relative; 5} 6a::after{ 7 position: absolute; 8 bottom: -4px; 9 left: 0; 10 content: ''; 11 width: 100%; 12 height: 1px; 13 background: #707070; 14 transform: scale(0, 1); 15 transform-origin: center top; 16 transition: transform .3s; 17} 18a:hover::after { 19 transform: scale(1, 1); 20}
HTML
1 <!-- return-top --> 2 <div class="return-top"> 3 <a href="#fv"> 4 <svg width="1.5em" height="1.5em" viewBox="0 0 16 16" class="bi bi-chevron-up" fill="currentColor" xmlns="https://www.w3.org/2000/svg"> 5 <path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg> 6 </a> 7 </div> 8 <!-- //return-top -->
CSS
1.return-top { 2 width:50px; 3 height:25px; 4 border-radius:25px 25px 0 0; 5 background-color:#A5BDC6; 6 margin: 0 auto; 7 display: flex; 8 justify-content: center; 9 align-items: center; 10} 11 12.return-top a{ 13 color: white; 14 display: flex; 15 justify-content: center; 16 align-items: center; 17}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。