![]() |
![]() |
bpr 14.10.2004 - 18:17 |
как сделать чтобы при наведении на ссылку, имеющую background в виде заливки менялся цвет данной заливки??? (не гр. изобр) спасибо! |
Mips 1 - 14.10.2004 - 19:48 |
background в виде заливки... сильно сказано. Видимо так: <style> a {background-color: green;} a:hover {background-color: red;} </style> <a href="#">link</a> |
yugdesign 2 - 14.10.2004 - 20:05 |
<div class="menuBar"><span style="background-color:yellow;" onmouseover="this.style.backgroundColor='red';this.style.color='white'" onmouseout="this.style.backgroundColor='yellow';this.style.color='white'"> <a class="menuButton" href="" ...></div>ССЫЛКА</a></span> |