Answers for "react hide input border"

CSS
17

css remove border input focus

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

Removing borderline of input in react

<TextField style={{border: 'none'}} ....
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language