Answers for "remove border input"

17

css remove border input focus

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

html remove border from textarea

textarea {
    border: none;
    background-color: transparent;
    resize: none;
    outline: none;
}
Posted by: Guest on July-28-2020
7

remove blue border on a input

input:focus {
    outline: none !important;
}
Posted by: Guest on April-16-2020
1

how to remove form border after click input

.from_Input{
    border: none;
    outline:none;
}
.from_Input:active{
    border: none;
    outline:none;
}
Posted by: Guest on May-07-2021
1

how to remove the outer border of an input text in html

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

how to remove onclick input border

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

Browse Popular Code Answers by Language