Answers for "textinput focus color"

CSS
0

How to change border color of textarea input on :focus

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
  }
Posted by: Guest on September-01-2021
-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 "textinput focus color"

Browse Popular Code Answers by Language