input remove border on focus code example

Example 1: html input box no border

border-width:0px;
border:none;
outline:none;

Example 2: css remove border input focus

textarea:focus, input:focus{
    outline: none;
}

Example 3: remove blue border on a input

input:focus {
    outline: none !important;
}

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

input:focus, textarea:focus, select:focus{
        outline: none;
    }

Example 5: remove border on button focus

button:focus {outline:0;}

Example 6: hide input border on focus

input:focus{
    border: none;
}

Tags:

Html Example