CSS の使用 user-select この属性は、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>
以上がCSS ユーザー選択プロパティの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。