對於大多數人來說,這應該是一件容易的事,但我無法把頭轉向它。我有下面的代碼爲我的按鈕,但我似乎無法得到懸停即使工作雖然按鈕正確稱呼:CSS按鈕懸停不起作用
.eventmark .upcomming_bg {
background: #1178bd;
background-image: -webkit-linear-gradient(top, #1178bd, #0c3c5c);
background-image: -moz-linear-gradient(top, #1178bd, #0c3c5c);
background-image: -ms-linear-gradient(top, #1178bd, #0c3c5c);
background-image: -o-linear-gradient(top, #1178bd, #0c3c5c);
background-image: linear-gradient(to bottom, #1178bd, #0c3c5c);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 11px;
text-decoration: none;
}
.eventmark.upcoming.bg:hover{
background: #3d7a80;
background: -webkit-linear-gradient(top, #3d7a80, #2f5f63);
background: -moz-linear-gradient(top, #3d7a80, #2f5f63);
background: -o-linear-gradient(top, #3d7a80, #2f5f63);
background: -ms-linear-gradient(top, #3d7a80, #2f5f63);
background: linear-gradient(top, #3d7a80, #2f5f63);
}
請幫助。
修正後的HTML太 – Raviteja