Lataeviaberry.com包含一个在其他浏览器中运行的“GET IN TOUCH”表单,但在safari中,只有<textarea>
字段接受文本。 <input>
字段不会显示输入其中的任何文本。我尝试将-webkit-user-select: none;
的每个实例更改为-webkit-user-select: text;
,甚至将下面的块添加到我的styles.css中,但没有任何效果。
input [type=text]{
-webkit-user-select: text !important;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
答案 0 :(得分:1)
问题是.contact .form-control
上的填充。
或.form-control
上的设定高度。
您可以通过多种方式解决问题。