web-dev-qa-db-fra.com

Comment puis-je changer la couleur d'un bouton en vol stationnaire?

J'ai besoin de changer la couleur d'un bouton en vol stationnaire.

Voici ma solution, mais ça ne marche pas.

a.button {
   display: -moz-inline-stack;
   display: inline-block;
   width: 391px;
   height: 62px;
   background: url("img/btncolor.png") no-repeat;
   line-height: 62px;
   vertical-align: text-middle;
   text-align: center;
   color: #ebe6eb;
   font-family: Zenhei;
   font-size: 39px;
   font-weight: normal;
   font-style: normal;
   text-shadow: #222222 1px 1px 0;
}
a.button a:hover{
     background: #383;
}
19
getaway

a.button a:hover signifie "un lien survolé qui est un enfant d'un lien avec la classe button".

Allez plutôt pour a.button:hover.

37
Matchu

Vous semblez vous tromper, essayez d'utiliser:

a.button:hover{
     background: #383;
}

Votre code

a.button a:hover

Cela signifie qu'il va rechercher un élément a dans a avec le bouton class.

12
BrunoLM
a.button:hover{
    background: #383;  }

travaille pour moi mais dans mon cas

#buttonClick:hover {
background-color:green;  }
1
Penh