Answers for "how to change the input label color in css"

CSS
0

css color of input

input{
  background-color: white; /*The color of your choice here*/
}
Posted by: Guest on November-29-2020
-2

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 "how to change the input label color in css"

Browse Popular Code Answers by Language