color change onclick css code example
Example 1: css onclick change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Example 2: css on click
<!DOCTYPE html>
<html>
<head>
<style>
a:active {
background-color: yellow;
}
button:focus {
background-color: yellow;
}
h1:hover {
background-color: red;
}
p:hover {
background-color: red;
}
</style>
</head>
<body>
<a href="#">Click Me</a>
<button>Click me</button>
<h1>Hover over me</h1>
<p>Hover over me</p>
</body>
</html>