Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

กำหนดว่าจะเลือกข้อความขององค์ประกอบด้วย CSS . ได้หรือไม่


ใช้คุณสมบัติ 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>