“CSS aktif” Kode Jawaban

CSS aktif

#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

Tombol CSS aktif

form :active {
  color: red;
}

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

CSS pada klik

something:active {}
hateschoollovecoding

Jawaban yang mirip dengan “CSS aktif”

Pertanyaan yang mirip dengan “CSS aktif”

Lebih banyak jawaban terkait untuk “CSS aktif” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya