在safari浏览器上的表单,点击表单项,有可能出现如图所示的图标:
这是浏览器自发的行为,想要隐藏这个图标,在css里加入以下代码即可。
input::-webkit-contacts-auto-fill-button {
visibility: hidden;
display: none !important;
pointer-events: none;
position: absolute;
right: 0;
}
在safari浏览器上的表单,点击表单项,有可能出现如图所示的图标:
这是浏览器自发的行为,想要隐藏这个图标,在css里加入以下代码即可。
input::-webkit-contacts-auto-fill-button {
visibility: hidden;
display: none !important;
pointer-events: none;
position: absolute;
right: 0;
}