Answers for "css remove border on click"

CSS
16

css remove border input focus

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

css remove link border on click

a:active, a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}
Posted by: Guest on December-12-2020
1

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020
0

remove on click border

outline:none;
Posted by: Guest on August-28-2020

Code answers related to "css remove border on click"

Browse Popular Code Answers by Language