change div background color on focus code example
Example 1: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Example 2: color background to input boxes on focus
input:focus {
background-color: yellow;
}