美文网首页
文本框自动填充样式的变更

文本框自动填充样式的变更

作者: 我叫Aliya但是被占用了 | 来源:发表于2022-07-04 14:11 被阅读0次

    谷歌浏览器的自动填充默认样式如下:

    /* user agent stylesheet */
    input:-internal-autofill-selected {
        appearance: menulist-button;
        background-image: none !important;
        background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
        color: fieldtext !important;
    }
    

    变更方法:

    /* 禁用background样式 */
    input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
        -webkit-transition: background 50000s ease-in-out 0s;
        transition: background 50000s ease-in-out 0s;
    }
    .my-input {
        background: transparent;
        box-shadow: 0 0 0px 1000px red inset; /* 背景色 */ 
        -webkit-text-fill-color: #333;
        &:focus {
          box-shadow: 0 0 0px 1000px #fff inset;
        }
    }
    

    相关文章

      网友评论

          本文标题:文本框自动填充样式的变更

          本文链接:https://www.haomeiwen.com/subject/mfpdbrtx.html