谷歌输入框自动填充样式问题

前端时间,在维护个人博客时,发现了谷歌浏览器的输入框自动填充功能严重破坏了前端页面的样式
谷歌输入框自动填充样式问题_第1张图片
经查阅,可以使用一下的样式进行覆盖

//方法1:背景透明下使用
&:-webkit-autofill {
          -webkit-text-fill-color: #fff !important;
          transition: background-color 5000s ease-in-out 0s;
   }


//方法2:$bg替换为你的背景颜色,$cursor替换为你的字体颜色
&:-webkit-autofill {
          box-shadow: 0 0 0px 1000px $bg inset !important;
          -webkit-text-fill-color: $cursor !important;
        }  

你可能感兴趣的:(前端样式,css)