Answers for "how to change a button background color when i aclick it"

CSS
2

css button click color

button{
  background-color:yellow;
}

button:hover{
  background-color:orange;
}

button:focus{
  background-color:red;
}
Posted by: Guest on June-11-2021

Code answers related to "how to change a button background color when i aclick it"

Browse Popular Code Answers by Language