修改 input 中的占位符placeholder字体颜色样式写法及兼容性处理 - 记录

/*WebKit browsers*/
input::-webkit-input-placeholder {
    
    
  color: #666 !important;
}
/*Mozilla Firefox 4 to 18*/
input:-moz-placeholder {
    
    
  color: #666 !important;
}
/*Mozilla Firefox 19+*/
input::-moz-placeholder {
    
    
  color: #666 !important;
}
/*Internet Explorer 10+*/
input:-ms-input-placeholder {
    
    
  color: #666 !important;
}

参考文献:https://www.jianshu.com/p/8f17298d7d2f

猜你喜欢

转载自blog.csdn.net/m0_46442996/article/details/109620137