Answers for "input onfocus border none"

CSS
24

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

Browse Popular Code Answers by Language