Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #border #highlight #color #input #text #element
ADD COMMENT
Topic
Name
3+2 =