Answers for "remove white line input css"

4

html input box no border

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

change border highlight color on an input text element

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language