css focus input border code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: input outline focus
input:focus, textarea:focus {
background-color: #FFFF66;
border: 1px solid #F47E58;
}
Example 3: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage