input中placeholder颜色的修改

input::-webkit-input-placeholder{
  color:red;
}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  color:red;
}
input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  color:red;
}
input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color:red;
}

猜你喜欢

转载自www.cnblogs.com/menxiaojin/p/11906027.html