美文网首页
2025-03-20

2025-03-20

作者: Zer0_2584 | 来源:发表于2025-03-19 17:45 被阅读0次

    input 中输入时,如果选择了历史,会在如数框中出现一个背景色,很不协调,如下图:

    image.png

    我们可以通过 css 来将他们去除

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0px 1000px white inset !important;
        transition: background-color 5000s ease-in-out 0s;
    } 
    

    相关文章

      网友评论

          本文标题:2025-03-20

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