我希望我能发布有关错误的代码,但坦率地说,我不知道。我的网页有效,但联系人面板中的输入元素不允许我输入任何内容。知道为什么吗?
答案 0 :(得分:0)
在您的CSS http://s1527.mtchs.org/techmuffins.css
中第一条规则包含将使所有内容(*
)“无法选择”的声明,特别是user-select
property的(跨浏览器)变体的集合。
* {
margin: 0;
padding: 0;
-webkit-touch-callout: none; /****************************/
-webkit-user-select: none; /* Remove these lines */
-khtml-user-select: none; /* or make the CSS selector */
-moz-user-select: none; /* more specific to avoid */
-ms-user-select: none; /* the <input/> elements */
user-select: none; /****************************/
}
答案 1 :(得分:0)
这些规则是您无法选择输入的原因。
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}