css-样式兼容

时间:2020-05-07 12:49:20   收藏:0   阅读:50
  1. safari input框type["password"] type["text"] 聚焦后右侧出现图标
    技术分享图片
    技术分享图片
input::-webkit-credentials-auto-fill-button , // password
input::-webkit-contacts-auto-fill-button { // other
   display: none !important;
   visibility: hidden;
   pointer-events: none;
   position: absolute; /* 避免占用 input 元素额外的 padding,正常情况下存在 display: none!; 就可以了 */
   right: 0;
}

原文:https://www.cnblogs.com/lisaShare/p/12842202.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!