デベロッパーツール上ではhover時の反応は正しいのですが、キャッシュクリアしても実際に反応しません。
どなたかわかる方いらっしゃいましたら教えて頂けますと幸いです。
html
1<a href="#k-support" class="button">資料請求</a>
css
1.button{ 2 display: block; 3 width: 180px; 4 margin: 0 auto 75px; 5 background-color: #ffa90d; 6 border-radius: 10px; 7 box-shadow: 0 6px 2px #bc780c; 8 text-align: center; 9 line-height: 50px; 10 font-size: 18px; 11 font-weight: bold; 12 color: #fff; 13 position: relative; 14} 15 16.button::after{ 17 content: ""; 18 position: relative; 19 top: 0; 20 left: 0; 21 width: 100%; 22 height: 100%; 23 background-color: #fff; 24 border-radius: 10px; 25 box-shadow: 0 6px 2px #fff; 26 opacity: 0; 27} 28 29.button:hover::after{ 30 opacity: 0.5; 31}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/24 04:26