修改input textarea占位符样式

收藏一个修改input textarea占位符样式的方法

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

你可能感兴趣的:(修改input textarea占位符样式)