css hover click code example
Example 1: 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>
Example 2: on hover css
/* Changes an element's color on hover */
.selector {
background-color: black;
}
.selector:hover {
background-color: blue;
}
Example 3: css on click
something:active {}