使用 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中文网其他相关文章!