1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
::-webkit-input-placeholder { /* WebKit browsers */ color: #e00; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #e00; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #e00; } :-ms-input-placeholder { /* Internet Explorer 10+ */ color: #e00; } |
用阴影实现:
1 |
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus { box-shadow:0 0 0 60px #fff inset; -webkit-text-fill-color: #333; } |
如果不想保存密码的话加个autocomplete="off"到form或者input就行了。 from:http://jinzhe.net/post/26.html
View Details