我試圖讓我的按鈕1)變成紅色,並且2)在懸停/鼠標懸停時變成綠色。 這裏是我的HTML:爲什麼我的按鈕不是我說的那種顏色?
<div id="home-button"> <button type="button" style="height: 100px; width: 400px; font-size: 45px; font-family: 'Josefin Sans', sans-serif; border-radius:20px" href='/'> HOME </button> </div>
這裏是我的CSS:
#home-button {
text-align: center;
padding:10px;
color: red;
}
#home-button:hover {
background-color: green;
}
正如你所看到的,按鈕既不是紅色也不綠色。請告訴我爲什麼
非常感謝您的幫助和快速響應! –
@SydneyPenny,很高興幫助:) – AmmarCSE