Answers for "css remove on click border"

CSS
7

css get rid of button outline on click

button:hover, button:focus {
  outline: none;
}
Posted by: Guest on September-17-2020
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 "css remove on click border"

Browse Popular Code Answers by Language