Cuuube / blog

blog on Mirror
1 stars 0 forks source link

[css]隐藏safari中input的自动补全小图标 #4

Open Cuuube opened 7 years ago

Cuuube commented 7 years ago

css

/*user*/
::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}
/*password*/
::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
}