Как изменить цвет кнопки ссылки при наведении курсора мыши ?
Всем привет ,
Я пытаюсь изменить цвет кнопки ссылки при наведении курсора мыши, но это не работает :
Это мой код :
<style type="text/css"> .simple { color: Red; } .simple:hover { color: #1A0006; } </style>
<table width="100px" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="top" style="width: 40px"> <asp:LinkButton CssClass="simple" ID="LinkButton2" ValidationGroup="culture" Text="العربية" runat="server" ForeColor="Black" Style="text-decoration: none;"></asp:LinkButton> </td> <td valign="bottom" runat="server" id="borders" style="width: 20px;"> <img src="images/Capture.PNG" /> </td> <td valign="top" style="width: 40px"> <asp:LinkButton CssClass="simple" ID="LinkButton1" ValidationGroup="culture" Text="ENGLISH" runat="server" ForeColor="Black" Style="text-decoration: none"></asp:LinkButton> </td> </tr> </table>
Пожалуйста помочь .