如何用css3更改占位符的颜色?
这个问题在这里已经有了答案:
对于Mozilla <19
<style type="text/css">
input:-moz-placeholder {
color: green;
}
</style>
对于Mozilla 19以后
<style type="text/css">
input::-moz-placeholder {
color: green;
}
</style>
适用于Google Chrome
<style type="text/css">
input::-webkit-input-placeholder {
color: green;
}
</style>
对于IE 10
<style type="text/css">
input:-ms-input-placeholder {
color: green;
}
</style>
链接地址: http://www.djcxy.com/p/12149.html