Answers for "how to remove border on click css"

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
0

remove on click border

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

Code answers related to "how to remove border on click css"

Browse Popular Code Answers by Language