“CSS aktiv” Code-Antworten

CSS aktiv

#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

Taste aktives CSS

form :active {
  color: red;
}

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

CSS auf Klick

something:active {}
hateschoollovecoding

Ähnliche Antworten wie “CSS aktiv”

Fragen ähnlich wie “CSS aktiv”

Weitere verwandte Antworten zu “CSS aktiv” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen