input文本框是纯色背景的
1.
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset!important;
box-shadow: 0 0 0px 1000px white inset!important;
}
2.
清除表单 数据
前置n个多余的input:
<li class="clearCode">
<input class="clearCode" type="password">
<input class="clearCode" type="password">
</li>
加样式:
.clearCode {
margin: 0;
padding: 0;
width: 0;
height: 0;
}
.form-content>ul>li:nth-child(1) {
position: relative;
left: -100000px;
}
<li class="tit">用户登录 / User login</li>