“CSS actif” Réponses codées

CSS actif

#id{
  background-color: red;
}
#id:active{
  background-color: Green;
}
/* note: Active doesn't mean click,
   it's when you press and hold the left mouse button.
   so when you press and hold, the background will change from red to green,
   and when you release the mouse it will change back to red   */

/* useful for scrollbar */
#container::-webkit-scrollbar-thumb:active{
	background-color: /*  color  */;
}
ST111

Button CSS actif

form :active {
  color: red;
}

form button:active {
  background: black;
}
Unsightly Unicorn

CSS sur le clic

something:active {}
hateschoollovecoding

Réponses similaires à “CSS actif”

Questions similaires à “CSS actif”

Plus de réponses similaires à “CSS actif” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code