Answers for "remove focus color in html css"

CSS
19

form field focus border remove css

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
2

css focus change color

<style>
.dabutton:focus {
    background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language