Answers for "css remove blue highlight on click"

3

remove button highlight on click

.btn:focus {
  outline: none;
  box-shadow: none;
}
Posted by: Guest on May-04-2020
2

css prevent text blue selection

::selection {
    color: none;
    background: none;
}
/* For Mozilla Firefox */
::-moz-selection {
    color: none;
    background: none;
}
Posted by: Guest on March-15-2021

Code answers related to "css remove blue highlight on click"

Browse Popular Code Answers by Language