I need to change the color of a button on hover.
Here is my solution, but it doesn\'t work.
a.button { display: -moz-inline-stack; display: inl
Seems your selector is wrong, try using:
a.button:hover{ background: #383; }
Your code
a.button a:hover
Means it is going to search for an a element inside a with class button.
a