Answers:
通过添加以下CSS样式:
-webkit-appearance: none;
textarea, input[type="text"], input[type="submit"]
。
input[type="password"]
。
[type="email"]
!
input:not([type=checkbox]):not([type=radio])
在添加CSS样式时
-webkit-appearance: none;
将工作,它摆脱了一切。您可能想尝试以下方法:
box-shadow: none !important;
这样,您可以保持向下箭头。
设置标签的一个background
和border
css属性input
似乎也可行。
试试这个:
<style>
input {
background: #ccc;
border: none;
}
</style>
<form>
First name: <input type="text"/><br />
Last name: <input type="text" />
</form>