Answers for "css form input no border when typing"

4

html input box no border

border-width:0px;
border:none;
outline:none;
Posted by: Guest on August-25-2020
1

remove default input style css

input:focus, textarea:focus, select:focus{
        outline: none;
    }
Posted by: Guest on July-03-2020

Code answers related to "css form input no border when typing"

Browse Popular Code Answers by Language