CSS - Remove yellow border for link or text with :focus selector

0 votes
325 views
added Apr 21, 2021 in CSS by lcjr Lieutenant (12,240 points)
:focus {
  outline: 0;
  outline-color: transparent;
  outline-style: none;
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...