css 积累

1、input 初始化
input {
-webkit-tap-highlight-color: rgba(0,0,0,0);
border: none;
}
input:focus {
outline: none;
}
::-webkit-input-placeholder {
color: #C0C0C0;
}

:-moz-placeholder {
/* Firefox 18- */
color: #C0C0C0;
}

::-moz-placeholder {
/* Firefox 19+ */
color: #C0C0C0;
}

:-ms-input-placeholder {
color: #C0C0C0;
}

  

 

猜你喜欢

转载自www.cnblogs.com/wzz1020/p/9843873.html