HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point{ user-select: none; } #point1{ user-select: auto; } #point2{ user-select: text; } #point3{ user-select: all; } </style> </head> <body> <p id="point">You can't select this text.</p> <p id="point1">Select me, if your browser allows.</p> <p id="point2">Select me, (only text).</p> <p id="point3">just click me to select all.</p> </body> </html>
OUTPUT
×

Save as Private