Answers for "html input remove focus border"

CSS
17

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Posted by: Guest on June-30-2020
5

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
2

hide input border on focus

input:focus{
    border: none;
}
Posted by: Guest on April-22-2021
1

change border highlight color on an input text element

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}
Posted by: Guest on May-21-2020

Code answers related to "html input remove focus border"

Browse Popular Code Answers by Language