如何使用邊框底部使鏈接下劃線動畫,以便文本和下劃線之間有空格?如何使用邊框底部動畫鏈接下劃線,以便鏈接文本和下劃線之間有空格?
我知道如何做到這一點,以便默認的文字修飾元素是動畫。但我想在鏈接和下劃線之間留出空間,這就是爲什麼我認爲我需要使用border-bottom。但我無法通過過渡動畫獲取邊框底部的作品。我怎麼能這樣做?我試圖尋找其他解決方案,但找不到任何解決方案。謝謝!
h2 > a {
position: relative;
color: #000;
text-decoration: none;
}
h2 > a:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #000;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
h2 > a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1);
transform: scaleX(1);
}