最近写表单的时候发现如果input输入框用的 placeholder这个属性的话 使用color改变文本提示颜色,没有反应!
/*修改提示文字的颜色*/
input::-webkit-input-placeholder { color: green;font-size:16px; } /* WebKit browsers */
input:-moz-placeholder {color: red; font-size:16px;} /* Mozilla Firefox 4 to 18 */
input::-moz-placeholder {color: red; font-size:16px;} /* Mozilla Firefox 19+ */
input:-ms-input-placeholder { color: red;font-size:16px; } /* Internet Explorer 10+ */