input / textarea 的placeholder设置字体颜色

input兼容写法,主要设置webkit内核浏览器、火狐浏览器、IE浏览器三种:

input::-webkit-input-placeholder { /* webkit内核浏览器 */
color: #bfbfbf!important;
}
input:-moz-placeholder { /* Firefix18- */
color: #bfbfbf!important;
}
input::-moz-placeholder { /* Firefix19+ */
color: #bfbfbf!important;
}
input::-ms-input-placeholder { /* IE浏览器 */
color: #bfbfbf!important;
}

textarea设置同上。

你可能感兴趣的:(input / textarea 的placeholder设置字体颜色)