Forgive me is this is a stupid question, but i need help. I want to change border color of TEXTAREA on focus. but my code doesn\'t seem to working properly.
Kindly v
Probably a more appropriate way of changing outline color is using the outline-color CSS rule.
textarea {
outline-color: #719ECE;
}
or for input
input {
outline-color: #719ECE;
}
box-shadow isn't quite the same thing and it may look different than the outline, especially if you apply custom styling to your element.