修改input框样式

将input输入框的默认样式去掉

-web-kit-appearance:none;
  -moz-appearance: none;

将input输入框的轮廓去掉:

outline:0;

改样式

input[type="text"] {
    //...
}

chrome去掉默认黄色背景

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

chrome下input type="password"有默认值

<input type="password" autocomplete="new-password" value="" />
posted @ 2018-08-08 22:21  五个唔  阅读(404)  评论(0编辑  收藏  举报