Answers for "change background color of input field on focus"

CSS
3

input background color

<input style="background-color: gold;" type="text" value="">
Posted by: Guest on July-06-2020
-1

focus on input change label color

.input-group {
    display: flex;
    flex-direction: column-reverse;
}

input:focus + label {
    color: red;
}
Posted by: Guest on January-02-2021

Code answers related to "change background color of input field on focus"

Browse Popular Code Answers by Language