[CSS] focus outline

  • Post author:
  • Post category:CSS
  • Post comments:0 Comments
/* 키보드로 버튼에 포커스 시 */
a.menu-link:focus-visible {
  outline: 3px solid #000;
}

/* 마우스, 터치로 버튼에 포커스 시 */
a.menu-link:focus:not(:focus-visible) {
  outline: none;
  box-shadow: 1px 1px 5px rgba(1, 1, 0, .7);
}


a.menu-link:focus {
  outline: none;
}

guest
0 Comments
Inline Feedbacks
View all comments