0
how to change size of menu on moving mouse on it?
can anyone tell me how to create a menu like when i will move cursor on it chages its size or something translation on it?
3 odpowiedzi
+ 2
put a :hover state
#mymenu:hover {
all the code set here will be displayed when the mouse is hover the button
}
+ 1
whatever class it is..
use that class or div & attach..
<div id= "foo" >
Your text
</div>
<style>
#foo:hover
{
background : crimson;
color : #fff;
}
</style>
0
ty i will try it