“CSS ativo” Respostas de código

CSS ativo

#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ão CSS ativo

form :active {
  color: red;
}

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

CSS no clique

something:active {}
hateschoollovecoding

Respostas semelhantes a “CSS ativo”

Perguntas semelhantes a “CSS ativo”

Mais respostas relacionadas para “CSS ativo” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código