用 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>

更新时间:2020 年 6 月 25 日

87 次观看

开启你的 事业

通过完成课程获得认证

开始
广告