CSS0014: CSS 禁止页面拖动 选中
时间:2020-08-20 23:47:50
收藏:0
阅读:378
1,禁止拖动
2,禁止选中文字图片等
body { height: 100%; overflow: hidden; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; color: #666; background-color: #fff; /* 文字不可选中 */ -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; }
原文:https://www.cnblogs.com/eliteboy/p/13538470.html
评论(0)