본문 바로가기
개발공부_Blog/HTML-CSS

간단한데 자주 안써서 까먹는 button에 default style없애기

by 소팡팡 2022. 10. 24.

간단한데 자주 안써서 까먹는 button에 default style없애기

.nav_wrap_mini button{
  border: none;
  outline: none;
  background-color: inherit ;
  cursor: pointer;
  // 마우스 올렸을 때 마우스 스타일 지정 -> 손모양
}

 

댓글