css怎么让页面上的内容不能被选中?

html,
body {
    width: 100%;
    height: 100%;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

猜你喜欢

转载自blog.csdn.net/xiaohu12685/article/details/80276515
今日推荐