Answers for "css change button style after click"

CSS
2

button click css style

a:visited {
  color: purple;
}

a:active {
  color: blue;
}
Posted by: Guest on May-25-2021
14

css onclick change color

<style>
.dabutton:focus {
    background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Posted by: Guest on July-03-2020

Code answers related to "css change button style after click"

Browse Popular Code Answers by Language