.selectall{ user-select: all; } none元素及其子元素的文本不可选中。 请注意这个Selection 对象可以包含这些元素。...的具体取值取决于一系列条件,具体如下: 在 ::before 和 ::after 伪元素上,采用的属性值是 none 如果元素是可编辑元素,则采用的属性值是 contain 否则,如果此元素的父元素的 user-select...采用的属性值为 all,则该元素采用的属性值也为 all 否则,如果此元素的父元素的 user-select 采用的属性值为 none,则该元素采用的属性值也为 none 否则,采用的属性值为 text
HTML5学堂:当我们在访问一个文章网站的时候,常常因为拖拽的时候误选文字,给我们的一种不好的用户体验,而我们可以用CSS3的user-select属性禁选文本来解决这个问题,另外为了防止用户的复制和转载...,我们也可以使用user-select属性]解决这个问题....接下来我们具体来了解一下user-select属性。...基本语法: user-select: value; value取值: auto默认值,用户可以选中元素中的内容 none用户不能选择元素中的任何内容 text用户可以选择元素中的文本 element文本可选...-moz-user-select: none; /*火狐*/ -ms-user-select: none; /*IE10*/ -khtml-user-select: none; /*早期浏览器*/ user-select
; -ms-user-select: none; /* 以下两个属性目前并未支持,写在这里为了减少风险 */ -o-user-select: none; user-select...: none; } user-select: auto; => 用户可以选中元素中的内容 user-select: none; => 用户不可选中元素中的内容 user-select: text;...=> 用户可以选中元素中的文字 目前这个 user-select 兼容 Chrome 6+、Firefox、IE 10+、Opera 15+、Safari 3.1+。...el.setAttribute('unselectable', 'on'); } } }; 四、参考 《JavaScript框架设计》──9.3.2 user-select
window.getSelection() // console.log(sel) }, }, } .el-checkbox { user-select...: auto; } .user-select-none { user-select: none; } .user-select-auto { user-select: auto; } .el-checkbox...__input { user-select: none; } .el-checkbox-group::selection { background-color: #fff; color: #206ef7
return false; 例子如下: 123 adasdasdasdasdasdasdad css方法(user-select...) user-select有两个值: none:用户不能选择文本 text:用户可以选择文本 需要注意的是:user-select并不是一个W3C的CSS标准属性,浏览器支持的不完整,需要对每种浏览器进行调整...webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select
inline-block; background-color: #eeeeee; position: fixed; top: 5%; right: 0; } span#Jia { user-select...:hover { box-shadow: 1px 1px 1px #808080; transition: all 100ms linear; } span#Jian { user-select...; transition: all 100ms linear; } span#fontSize { display: block; margin-top: 4px; user-select...important; } span#Guan { user-select: none; cursor: pointer; display: inline-block;
user-select CSS属性 user-select CSS 属性用于控制用户是否可以选择文本。...为了兼容性,可以这样写: .unselectable { -webkit-user-select: none; /* Safari */ user-select: none; } 打开一个某知名知识付费网站看一下...document.getElementsByTagName('*'); // 遍历所有元素 for (var i = 0; i < allElements.length; i++) { // 添加 "user-select..." 属性 allElements[i].setAttribute('user-select', 'none'); // 添加 "copy" 事件监听器 if (allElements
box-shadow: 2px 2px 2px #16c8e7; margin: 4px 4px; cursor: pointer; user-select...box-shadow: 2px 2px 2px #b40707; margin: 4px 4px; cursor: pointer; user-select...box-shadow: 2px 2px 2px #d1ce18; margin: 4px 4px; cursor: pointer; user-select...box-shadow: 2px 2px 2px #67db19; margin: 4px 4px; cursor: pointer; user-select
一.禁止点击 html{ pointer-events:none;} 二.静止选中 #web html{ user-select:none; } #手机端 html{{ -webkit-touch-callout...webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select
span#Button { font-size: 24px; background-color: #eeeeee; padding: 6px 10px; user-select...Dialog div#dialogHeader { text-align: center; padding: 4px 0; font-size: 26px; user-select...span#dialogButtonA { display: inline-block; width: 135px; text-align: center; user-select...span#dialogButtonB { display: inline-block; width: 135px; text-align: center; user-select
webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select...user-select 属性是css3新增的属性,用于设置用户是否能够选中文本。
通过css样式user-select:none阻止选中实现禁止复制。 目前一般选择其中一种,比如简书、掘金、知乎等资讯问答类,也有混合使用的,比如起点网这类阅读为主的。...window.clipboardData; clipboardData.setData('text', copyText); } 3.起点网防复制功能实现 禁止复制+剪切 禁止右键,右键某些选项:复制粘贴剪切 禁用文字选择:user-select...document.body.oncopy = e => { return false; // e.preventDefault(); } // css禁止用户选择 .content{ user-select...有些网站直接让你无法选中,给文本增加了css样式user-select:none。
; font-size: 24px; /*字体大小*/ font-weight: 500; /*字体维度*/ text-align: center; /*字体居中*/ user-select...48px; height: 48px; display: flex; justify-content: center; align-items: center; user-select.../*定位*/ top:0; right: 0; width: 400px; height: 100%; background-color: #000; user-select...; font-size: 24px; /*字体大小*/ font-weight: 500; /*字体维度*/ text-align: center; /*字体居中*/ user-select.../*定位*/ top:0; right: 0; width: 400px; height: 100%; background-color: #000; user-select
{ font-size: 22px; color: rgba(34, 128, 191, 1); font-family: PingFang SC Regular; user-select...text-align: center; } .NoResultText { font-family: PingFang SC Regular; font-size: 24px; user-select...white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; user-select...center; flex: 1; } .TitleText { font-size: 22px; font-family: PingFang SC Regular; user-select
.element { overscroll-behavior: contain; } 9. user-select: user-select控制用户是否可以选择元素内的文本,从而更好地控制用户交互和界面设计....element { user-select: none; } 10. text-align-last: Text-align-last 指定块或行的最后一行(强制换行符之前)如何在其容器内对齐
display: flex; justify-content: center; margin-bottom: 40px; .logo { user-select...; margin-right: 10px; border-radius: 50%; } .title { user-select...{ display: flex; justify-content: center; } } .footer-span { user-select...position: absolute; width: 100%; text-align: center; top: 10%; span { user-select...position: absolute; width: 100%; text-align: center; bottom: 5%; span { user-select
npm install autoprefixer -D 复制代码 工具都准备好了,还差个需要转换的 css 文件,我们在项目目录下新建一个 test.css 文件,文件内容如下: .title { user-select...: none; } 复制代码 我们拿 CSS 属性 user-select 举例,因为这个属性通常是需要添加浏览器前缀的(目的是适配多个浏览器)。...{ -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select
readonly="readonly"] { -moz-user-select: none; -webkit-user-select: none; -o-user-select: none; user-select...: none; } 这是个新的实验性属性,具体说明及兼容性可参考user-select MDN 用起来感觉很好,但是同样有两个问题:一,非标准属性(请尽量不要在生产环境中使用它!)
01 禁用用户选中一个元素(element)的文本 使用属性user-select,并且将它的值设置为none,我们可以将一个元素的文本设置为不能被用户选中。...element { -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10+ and Edge */ user-select
无模糊,加盖遮罩层效果 加特效后 css的特效代码只有两行 .mask{position: relative;filter: blur(2px);user-select: none;} .mask...align-items: center; justify-content: center; } .mask{position: relative;filter: blur(2px);user-select
领取专属 10元无门槛券
手把手带您无忧上云