Answers for "how to remove border in input after clicked css"

CSS
24

css remove border input focus

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

hide input border on focus

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

how to remove onclick input border

outline:none
Posted by: Guest on August-23-2020

Code answers related to "how to remove border in input after clicked css"

Browse Popular Code Answers by Language