其他分享
首页 > 其他分享> > css——禁止选中文字

css——禁止选中文字

作者:互联网

问题:

  在CSS中添加样式使dom中的文字无法被选中

解决办法

        -webkit-touch-callout: none;
        /* iOS Safari */

        -webkit-user-select: none;
        /* Chrome/Safari/Opera */

        -khtml-user-select: none;
        /* Konqueror */

        -moz-user-select: none;
        /* Firefox */

        -ms-user-select: none;
        /* Internet Explorer/Edge */

        user-select: none;
        /* Non-prefixed version, currently not supported by any browser */

  

标签:none,禁止,选中,css,Safari,webkit,select,user
来源: https://www.cnblogs.com/lucky-jun/p/15711254.html