关于移动端input框 无法输入的问题

前端之家收集整理的这篇文章主要介绍了关于移动端input框 无法输入的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
                                            <table class="text"&gt;<tbody><tr class="li1"&gt;

<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

属性   -webkit-user-select: none; /*禁掉用户可以选中页面中的内容,*/   就是因为这个属性禁用了元素的选中。   CSS里的user-select属性是用来禁止用户用鼠标在页面上选中文字、图片等,也就是,让页面内容不可选。 也可以只允许用户中文字,或者全部都放开,用户可以同时选中文字、还包括文本里的图片、视频等其它东西。 user-select属性的作用是元素级别的,它不仅可以作用整个页面,也可以只在指定的元素和其子元素上生效。   user-select: none; /*禁掉用户可以选中页面中的内容,*/ user-select: auto; user-select: text; user-select: contain; user-select: all; //火狐浏览器 -moz-user-select: none; -moz-user-select: text; -moz-user-select: all; //谷歌浏览器 -webkit-user-select: none; -webkit-user-select: text; -webkit-user-select: all; //IE -ms-user-select: none; -ms-user-select: text; -ms-user-select: all; -ms-user-select: element;       原文链接:https://www.f2er.com/note/421125.html

猜你在找的程序笔记相关文章