FOcus
HTML
<div>
<button class="btn" type="button" name="button">
click
</button>
</div>
CSS
.btn {
color: #000;
background: red;
}
.btn:focus {
background: green;
}
<div>
<button class="btn" type="button" name="button">
click
</button>
</div>
.btn {
color: #000;
background: red;
}
.btn:focus {
background: green;
}