분류 css

텍스트 선택의 스타일을 변경

컨텐츠 정보

  • 조회 731 (작성일 )

본문

HTML :

<p class="custom-text-selection">Select some of this text.</p>



CSS : 

::selection {
  background: aquamarine;
  color: black;
}
.custom-text-selection::selection {
  background: deeppink;
  color: white;
}



css