본문 바로가기

BLOG/HTML&CSS&SCSS

css 페이지 드래그 색상변경하기

::-moz-selection {
      background: red;
      color: white;
  }
  ::selection {
    background: red;
    color: white;
  }

 

css에 넣어주면 된다.

원하는 배경 색상과 폰트 컬러를 지정하면 된다.