on focus border color css code example
Example 1: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Example 2: css keep focus color on div after click
button.selected{
color:red;
}