Answers for "form change border color of input filed onfocus"

CSS
7

change border highlight color on an input text element

input:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}
textarea:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}
Posted by: Guest on May-21-2020
5

input type color

<input type="color" value="#f6f82" id="colorPicker">
Posted by: Guest on December-06-2020

Code answers related to "form change border color of input filed onfocus"

Browse Popular Code Answers by Language