Answers for "when no border when input is not focused in css"

CSS
17

css remove border input focus

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

css focus outline none

*:focus {
    outline: none;
}
Posted by: Guest on May-07-2021

Code answers related to "when no border when input is not focused in css"

Browse Popular Code Answers by Language