css click border remove code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: css remove link border on click
a:active, a:focus {
outline: 0;
border: none;
-moz-outline-style: none;
}
Example 3: input outline focus
input:focus, textarea:focus {
background-color: #FFFF66;
border: 1px solid #F47E58;
}
Example 4: remove on click border
outline:none;