button style, css -
Is it possible that when I go to the button mouse, change the button styles?
When on cursor button, show this style:
input.button_p {color: # 000000; Border-style: none; }
When the cursor is not on the button, show this style:
input.button_a {color: #FFFFFF; Border style: solid; }
thanks
You can use it, like :
input.button_p {color: # 000000; Border-style: none; } Input.button_p: Hover {color: #FFFFFF; Border style: solid; }
and the element has only the button_p
class like:
Comments
Post a Comment