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 */

  

上一篇:win7 休眠功能的开启与关闭


下一篇:c++ c# java 调用 c++ 写的dll