Make autofill background transparent

来源:互联网 发布:windows激活密钥 编辑:程序博客网 时间:2024/06/06 21:43

https://jsfiddle.net/ju3g47jh/14/


<div class='select_custom_background'>
<input type='text' class='' placeholder='' name="addrBox" id="addrBox"/></div>


div.select_custom_background {
    background-image: url(http://i.stack.imgur.com/mbisi.png) !important;
    width: 175px
}


input {
    background-color: transparent !important;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: white 5000s ease-in-out 0s;
}

0 0
原创粉丝点击