我無法在我的href中添加多功能性。只有一個CSS類中的類聲明可以工作
這是我的代碼:
HTML:
<html>
<head>
<link rel="stylesheet" type="text/css" href="css-style.css">
<title></title>
</head>
<body>
<h1>Hello HTML!</h1>
<p>I am Hristiqn. I am from <a class="magic" href="https://en.wikipedia.org/wiki/Neverland">Neverland</a></p>
</body>
</html>
CSS:
a.magic:visited {font-size: 300px;
background: -webkit-linear-gradient(gold,green);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;}
a.magic:active {font-size: 300px;
background: -webkit-linear-gradient(red,green);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;}
a.magic:hover { font-size: 60px;
background: -webkit-linear-gradient(white, green);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;}
現在,我嘗試這樣做,通過設置所需的樣式屬性的一類,稱爲魔術,但似乎只有:懸停的作品。 我試圖按名稱設置屬性,但效果是一樣的 - 只有懸停工作。
因此,我希望鏈接按鈕在我將鼠標懸停在其上時執行不同的操作,只要它處於活動狀態等等,但似乎只有我的:懸停聲明有效,我不知道爲什麼。
謝謝。
[This could help](https://css-tricks.com/remember-selectors-with-love-and-hate/) –
您需要提供代碼的最小示例導致這裏的問題,而不是第三方的網站,明天可能會改變或消失,幫助將來沒有人出現類似的問題。 – Rob