html禁止相关css

一.禁止点击

html{ pointer-events:none;}

二.静止选中

#web
html{
    user-select:none;
}

#手机端
html{{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
posted @ 2020-06-17 16:36  小小咸鱼YwY  阅读(449)  评论(0编辑  收藏  举报