“CSS activo” Código de respuesta

CSS activo

#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

Botón CSS activo

form :active {
  color: red;
}

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

CSS en clic

something:active {}
hateschoollovecoding

Respuestas similares a “CSS activo”

Preguntas similares a “CSS activo”

Más respuestas relacionadas con “CSS activo” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código