如何使某些文本不能用CSS选择

这个问题在这里已经有了答案:

  • 如何禁用文本选择突出显示? 37个答案

  • 下面的CSS会阻止用户选择文本。

    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    

    要向下定位IE9,必须使用unselectable的html属性:

    <p unselectable="on">Test Text</p>
    

    为textarea使用简单的背景图片就够了。

    要么

    <div onselectstart="return false">your text</div>
    
    链接地址: http://www.djcxy.com/p/7113.html

    上一篇: How to make certain text not selectable with CSS

    下一篇: How to make HTML Text unselectable