我剛剛開始使用網頁設計,並嘗試將懸停效果添加到這個非常古老的HTML CSS CSS代碼。我想要的其實很簡單。如果我將鼠標懸停在圖像上,圖像應該變成黃色。我也嘗試了css a:hover
,但這也不起作用。請給我一個提示。HTML中href鏈接的懸停效果
<td class="mainMenu">
<a href="n_home.html">
<img onmouseover="yellow(this)" src="navig/home_up.gif" alt="Home" width="34" height="23" border="0" />
</a>
</td>
td.mainMenu {
width : 37px;
height: 26px;
text-align: left;
vertical-align: top;
}
function yellow(x) {
x.style.backgroundColor = "#FFFF00";
}
圖像是否透明?如果不是,你期望看到它背後的背景顏色? – Quentin
尋求代碼幫助的問題必須包括在問題本身**中重現它所需的最短代碼**最好在[** Stack Snippet **](https://blog.stackoverflow.com/2014/09/introducing-可運行的JavaScript-CSS-和HTML的代碼段/)。請參閱[**如何創建最小,完整和可驗證示例**](http://stackoverflow.com/help/mcve) –