chrome input/textarea/select 输入框去除黄色背景

解决原理:使用足够大的纯色内阴影来覆盖input输入框的黄色背景

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

 

posted @ 2018-03-30 11:23  自由飞翔^_^  阅读(164)  评论(0编辑  收藏  举报