CSS 사용자 선택 사용 CSS로 요소의 텍스트를 선택할 수 있는지 여부를 설정하는 속성
예시
<!DOCTYPE html> <html> <head> <style> div { user-select: none; } </style> </head> <body> <h2>This is demo heading</h2> <div>This is demo text. You won't be able to select it.</div> </body> </html>