Answers for "how to change color of an element when an input is focussed in css"

CSS
14

css focus change color

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

Code answers related to "how to change color of an element when an input is focussed in css"

Browse Popular Code Answers by Language