Answers for "onclick change background color css"

3

css onclick change color

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

how to change background color using js

var warning = document.getElementById("warning");
  warning.style.background-color = "red";
Posted by: Guest on August-30-2020

Code answers related to "onclick change background color css"

Code answers related to "Javascript"

Browse Popular Code Answers by Language