css怎么禁止选中文字


当前第2页 返回上一页

pc端:

1

2

3

4

5

6

7

.not-select{

    -moz-user-select:none; /*火狐*/

    -webkit-user-select:none; /*webkit浏览器*/

    -ms-user-select:none; /*IE10*/

    -khtml-user-select:none; /*早期浏览器*/

    user-select:none;

}

移动:

1

2

3

4

5

6

7

8

.no-touch {

    -webkit-touch-callout: none;

    -webkit-user-select: none;

    -khtml-user-select: none;

    -moz-user-select: none;

    -ms-user-select: none;

    user-select: none;

}

补充:js方法:

1

ontouchstart="return false;"

在需要禁止的dom上添加这段代码,两种方法对于安卓和IOS的支持没有单独测试过。两个同时使用,对于安卓和IOS可以起到禁止作用。

(学习视频分享:css视频教程)

以上就是css怎么禁止选中文字的详细内容,更多文章请关注木庄网络博客

返回前面的内容

相关阅读 >>

分享一些提高前端开发效率的css 属性选择器!!

css如何实现水平居中

css有哪几种样式

css和xsl的区别是什么

css如何实现背景透明,文字不透明?

css怎么设置图片高度

html和css是什么语言?

css如何去掉color值

css的min-height属性怎么用

css图片后的文字无法居中怎么办

更多相关阅读请进入《css》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...