Answers for "button color when clicked css"

CSS
0

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
1

css color when clicked

element:focus
Posted by: Guest on January-11-2021

Browse Popular Code Answers by Language