input onfocus change border color css code example
Example 1: change input border color when selected
input:focus {
outline: none;
border: 1px solid red;
}
Example 2: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage