Mixin for Less
.appearance (@value: none) {
-webkit-appearance: @value;
-moz-appearance: @value;
-ms-appearance: @value;
-o-appearance: @value;
appearance: @value;
}
Run Code Online (Sandbox Code Playgroud)
在你的CSS中添加:
input {-webkit-appearance: none; box-shadow: none !important; }
:-webkit-autofill { color: #fff !important; }
Run Code Online (Sandbox Code Playgroud)
仅适用于Chrome!:)