Sử dụng CSS user-select để đặt văn bản của phần tử có thể được chọn hay không bằng CSS
Ví dụ
<!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>