Answers for "on focus no border to appear in input box"

CSS
17

css remove border input focus

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

not make input box border on click

[contenteditable="true"]:focus {
    outline: none;
}
Posted by: Guest on April-24-2021

Code answers related to "on focus no border to appear in input box"

Browse Popular Code Answers by Language