我有這樣的登錄按鈕,看起來像這樣:字體顏色不會改變懸停
現在,當我將鼠標懸停於它,它應該是這樣的:
我不能讓文字白當我將鼠標懸停在上面
我的代碼:
.button {
\t border: 0px solid #011f4b;
\t background: #011f4b;
\t padding: 3px 21px;
\t -webkit-border-radius: 16px;
\t -moz-border-radius: 16px;
\t border-radius: 16px;
\t color: #ffffff;
\t font-size: 12px;
\t font-family: Questrial;
\t text-decoration: none;
\t vertical-align: middle;
\t letter-spacing: 2px;
}
.button:hover {
\t border: 0px solid #1292e1;
\t background: #1292e1;
\t color: white;
}
.button:active {
\t background: #1292e1;
\t color: #fff;
}
<a href='#' class='button'>Login</a>
您將兩種顏色都設爲白色 –
@TemaniAfif你是什麼意思? –
我的意思是你把白色和它是白色的...你的代碼中的問題在哪裏? –