将input输入框的默认样式去掉
-web-kit-appearance:none;
-moz-appearance: none;
将input输入框的轮廓去掉:
outline:0;
改样式
input[type="text"] {
//...
}
chrome去掉默认黄色背景
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
chrome下input type="password"有默认值
<input type="password" autocomplete="new-password" value="" />